summaryrefslogtreecommitdiff
path: root/software/mpu.old/src/main.c
diff options
context:
space:
mode:
authorChristian Pointner <equinox@mur.at>2013-05-28 19:22:38 +0000
committerChristian Pointner <equinox@mur.at>2013-05-28 19:22:38 +0000
commit3ab7176e463268a471eb0e90c8520be4ff15a42f (patch)
tree24f228d74d9bdd4f5db2e9ea6009364b09f0f5d8 /software/mpu.old/src/main.c
parentDRC passes (diff)
moved old FreeRTOS based MPU Softeware to mpu.old
git-svn-id: https://svn.spreadspace.org/mur.sat@768 7de4ea59-55d0-425e-a1af-a3118ea81d4c
Diffstat (limited to 'software/mpu.old/src/main.c')
-rw-r--r--software/mpu.old/src/main.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/software/mpu.old/src/main.c b/software/mpu.old/src/main.c
new file mode 100644
index 0000000..e7f69f1
--- /dev/null
+++ b/software/mpu.old/src/main.c
@@ -0,0 +1,20 @@
+/*
+===============================================================================
+ Name : main.c
+ Author :
+ Version :
+ Copyright : Copyright (C)
+ Description : main definition
+===============================================================================
+*/
+void boot_Main(void);
+
+int main(void)
+{
+#if 1
+ boot_Main();
+#endif
+
+ /* If we ever reach this point, then there is something very wrong. */
+ return -1;
+}