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