aboutsummaryrefslogtreecommitdiff
path: root/Source/main.c
diff options
context:
space:
mode:
authorXavier Del Campo <xavi.dcr@gmail.com>2017-02-04 14:49:08 +0100
committerXavier Del Campo <xavi.dcr@gmail.com>2017-02-04 14:49:08 +0100
commit189ecf754d0c8131464bfdff98fb56e7752556b1 (patch)
tree89e7d02128bbc7b2d3f5c19a3da14ec14291982a /Source/main.c
downloadairport-189ecf754d0c8131464bfdff98fb56e7752556b1.tar.gz
Initial commit
Diffstat (limited to 'Source/main.c')
-rwxr-xr-xSource/main.c27
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;
+
+}