rt/include/rt/rt.h

23 lines
261 B
C

#ifndef RT_H
#define RT_H
#ifdef __cplusplus
extern "C" {
#endif
/*
* Start rt. (Enable interrupts, turn the active context into the idle task.)
*/
void rt_start(void);
/*
* Stop rt.
*/
void rt_stop(void);
#ifdef __cplusplus
}
#endif
#endif /* RT_H */