implemented feature1

pull/4/head
polymurph 3 years ago
commit c211bec469

@ -0,0 +1,6 @@
#include "feature1.h"
void feature1()
{
printf("feature1\n");
}

@ -0,0 +1,6 @@
#ifndef _FEATURE1_H_
#define _FEATURE1_H_
void feature1();
#endif

@ -1,11 +1,11 @@
#include "feature1.h"
int main(void)
{
char ledStatus = 1;
return 0;
printf("Hello, World!");
toggleLed(ledStatus);
feature1();
return 0;
}

Loading…
Cancel
Save