Racing Robots Session

Dependencies:   m3pi mbed

Dependents:   RacingRobots

Fork of racing_robots by Nico De Witte

Revision:
8:c5dccd557aab
Parent:
7:a72215b1910b
--- a/racing_robots.cpp	Wed Feb 25 15:56:14 2015 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-#include "robot_logic.h"
-
-// External functions called from our library
-extern void init(void);
-extern void loop(void);
-
-/*
- * System initialization.
- * Also calls external init() function.
- */
-void _init(void) {
-    // DO our init here
-
-    init(); // Students init
-}
-
-/*
- * Entry point.
- * Also calls external loop function.
- */
-int main (void) {
-    // Initialize system
-    _init();
-
-    while (true) {
-        loop();     // Students loop
-    }
-}
\ No newline at end of file