Racing Robots Session

Dependencies:   m3pi mbed

Fork of racing_robots by Nico De Witte

racing_robots.cpp

Committer:
dwini
Date:
2015-02-23
Revision:
0:c0ae66a0ec7a
Child:
1:43c91152e9ce

File content as of revision 0:c0ae66a0ec7a:

#include "racing_robots.h"

DigitalOut myled(LED1);

extern void loop(void);
extern void init(void);


void _init(void) {
    // DO our init here

    init(); // Students init
}

void racing_robots(void) {
    // Initialize system
    _init();

    while (true) {
        loop();     // Students loop
    }
}


int main (void) {
    racing_robots();
}