Compare commits

...

5 Commits
V1.0 ... master

@ -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

@ -0,0 +1,2 @@
void toggleLED(char onOff);

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

Loading…
Cancel
Save