diff options
| author | Xavier Del Campo <xavi.dcr@gmail.com> | 2017-02-04 14:49:08 +0100 |
|---|---|---|
| committer | Xavier Del Campo <xavi.dcr@gmail.com> | 2017-02-04 14:49:08 +0100 |
| commit | 189ecf754d0c8131464bfdff98fb56e7752556b1 (patch) | |
| tree | 89e7d02128bbc7b2d3f5c19a3da14ec14291982a /Source/main.c | |
| download | airport-189ecf754d0c8131464bfdff98fb56e7752556b1.tar.gz | |
Initial commit
Diffstat (limited to 'Source/main.c')
| -rwxr-xr-x | Source/main.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Source/main.c b/Source/main.c new file mode 100755 index 0000000..083daa0 --- /dev/null +++ b/Source/main.c @@ -0,0 +1,27 @@ +/* ************************************* + * Includes + * *************************************/ + +#include "Global_Inc.h" +#include "Menu.h" +#include "System.h" + +/* ************************************* + * Defines + * *************************************/ + +/* ************************************* + * Local Prototypes + * *************************************/ + +int main(void) +{ + + //System initialization + SystemInit(); + + MainMenu(); + + return 0; + +} |
