main.c 194 Bytes
Newer Older
hu's avatar
hu committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
 
#include "r_typedefs.h"
#include "sys_scheduler.h"
#include "Watchdog.h"
int main(void)
{
    Sys_Init();

    while (1U)
    {
        Sys_Scheduling_Service();
        WDT_Clear();
    }
}