12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- #ifndef OSAL_TASKS_H
- #define OSAL_TASKS_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #define TASK_NO_TASK 0xFF
- typedef unsigned short (*pTaskEventHandlerFn)( unsigned char task_id, unsigned short event );
- extern const pTaskEventHandlerFn tasksArr[];
- extern const uint8 tasksCnt;
- extern uint16 *tasksEvents;
- extern void osalInitTasks( void );
- #ifdef __cplusplus
- }
- #endif
- #endif
|