A Small Cooperative Multitasking Kernel

Dependencies:   mbed

main.c

Committer:
Ivop
Date:
2011-07-24
Revision:
0:73b89fc74e9f

File content as of revision 0:73b89fc74e9f:

#include "kernel.h"
#include "timer.h"
#include <stdio.h>

int main(int argc, char **argv) {
    printf("Opus Una (Working Together) - Version %i\r\n", OU_VERSION);
    ou_start_timer();
    ou_scheduler();
    return 0;
}