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 /* Opus Una - A Small Cooperative Multitasking Kernel in C
Ivop 0:73b89fc74e9f 2 *
Ivop 0:73b89fc74e9f 3 * Copyright (C) 2011 by Ivo van Poorten <ivop@euronet.nl>
Ivop 0:73b89fc74e9f 4 * This file is licensed under the terms of the GNU Lesser
Ivop 0:73b89fc74e9f 5 * General Public License, version 3.
Ivop 0:73b89fc74e9f 6 */
Ivop 0:73b89fc74e9f 7
Ivop 0:73b89fc74e9f 8 #ifndef OU_TIMER_H
Ivop 0:73b89fc74e9f 9 #define OU_TIMER_H
Ivop 0:73b89fc74e9f 10
Ivop 0:73b89fc74e9f 11 void ou_start_timer(void);
Ivop 0:73b89fc74e9f 12 void ou_idle(void);
Ivop 0:73b89fc74e9f 13
Ivop 0:73b89fc74e9f 14 #endif