#ifndef __TASKS_H #define __TASKS_H #include "stm8s.h" extern void taskA(void); //5ms extern void taskB(void); //10ms extern void taskC(void); //100ms extern void Tim4_Isr_CallBack(void); #endif