comparison src/cs/riviera/rvf/rvf_time.c @ 34:397e3a3274ea

NU_Create_Timer() changes for new Nucleus
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 16 Jul 2018 16:26:51 +0000
parents b6a5e36de839
children
comparison
equal deleted inserted replaced
33:b183afa47c72 34:397e3a3274ea
221 NU_Create_Timer( &(rvf_Timer[task_num][timer_num]),/* TIMER CONTROL BLOCK*/ 221 NU_Create_Timer( &(rvf_Timer[task_num][timer_num]),/* TIMER CONTROL BLOCK*/
222 "", /* timer name */ 222 "", /* timer name */
223 _rvf_timer_expire, /* expiration routine to call*/ 223 _rvf_timer_expire, /* expiration routine to call*/
224 (task_num * RVF_NUM_TASK_TIMERS) +timer_num, 224 (task_num * RVF_NUM_TASK_TIMERS) +timer_num,
225 /* unique id which enables to find a specific task and a specific timer*/ 225 /* unique id which enables to find a specific task and a specific timer*/
226 0, 226 1,
227 0, 227 0,
228 NU_DISABLE_TIMER); 228 NU_DISABLE_TIMER);
229 } 229 }
230 } 230 }
231 } 231 }