A Small Cooperative Multitasking Kernel

Dependencies:   mbed

Committer:
Ivop
Date:
Sun Jul 24 17:15:42 2011 +0000
Revision:
0:73b89fc74e9f
first release

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Ivop 0:73b89fc74e9f 1 #include "kernel.h"
Ivop 0:73b89fc74e9f 2 #include "timer.h"
Ivop 0:73b89fc74e9f 3 #include <stdio.h>
Ivop 0:73b89fc74e9f 4
Ivop 0:73b89fc74e9f 5 int main(int argc, char **argv) {
Ivop 0:73b89fc74e9f 6 printf("Opus Una (Working Together) - Version %i\r\n", OU_VERSION);
Ivop 0:73b89fc74e9f 7 ou_start_timer();
Ivop 0:73b89fc74e9f 8 ou_scheduler();
Ivop 0:73b89fc74e9f 9 return 0;
Ivop 0:73b89fc74e9f 10 }