3 changed files with
15 additions and
3 deletions
|
|
@ -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)
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
char ledStatus = 1;
|
|
|
|
char ledStatus = 1;
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
printf("Hello, World!");
|
|
|
|
printf("Hello, World!");
|
|
|
|
toggleLed(ledStatus);
|
|
|
|
feature1();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|