summaryrefslogtreecommitdiff
path: root/demo.c
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 06:20:27 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 06:29:12 +0100
commit6c17623845a0d42285d77bdd8bbf177badf5b9f6 (patch)
tree3db8b0fa214264ac089d16bbcf4a3c533b8d7629 /demo.c
parente9b4b3d26eae1a07c9c2d948e51250792beea075 (diff)
Shuffled a few configuration items around, and added a barebone demo source code.
Diffstat (limited to 'demo.c')
-rw-r--r--demo.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/demo.c b/demo.c
new file mode 100644
index 0000000..7f2a174
--- /dev/null
+++ b/demo.c
@@ -0,0 +1,6 @@
+#include <FreeRTOS.h>
+#include <task.h>
+
+int main() {
+ vTaskStartScheduler();
+}