Beispiel #1
0
/* List of tasks to be executed @ 100ms */
void TASKS_LIST_100MS( void )
{ 
    /* vfnCOM_SendRPM();*/
    vfnSchedulepoint();
}
Beispiel #2
0
/* List of tasks to be executed @ 10ms */
void TASKS_LIST_10MS( )
{
    vfnGetRPMButtons();
    vfnSchedulepoint();
    vfnSetPITCounts();
}
Beispiel #3
0
/* List of tasks to be executed @ 50ms */
void TASKS_LIST_50MS( void )
{
    vfnSchedulepoint();
}
Beispiel #4
0
/* List of tasks to be executed @ 2ms, second group */
void TASKS_LIST_2MS_B( void )
{   
    vfnSchedulepoint();
}
Beispiel #5
0
/* List of tasks to be executed @ 2ms, first group */
void TASKS_LIST_2MS_A(void)
{
    vfnCOPWatchdog_Reset();
    vfnSchedulepoint();
}
Beispiel #6
0
/* List of tasks to be executed @ 1ms */
void TASKS_LIST_1MS( void )
{
    /* vfnCheckCommands(); */
    vfnCOM_RxByte();
    vfnSchedulepoint();
}
Beispiel #7
0
/* List of tasks to be executed @ 10ms */
void TASKS_LIST_10MS( )
{
    vfnGetRPMButtons();
    vfnSchedulepoint();
    /*vfnCamCrankTimingCalculation();*/
}
Beispiel #8
0
/* List of tasks to be executed @ 1ms */
void TASKS_LIST_1MS( void )
{
    vfnCheckCommands();
    vfnSchedulepoint();
    vfnCOPWatchdog_Reset();
}