Searched refs:syncWas (Results 1 – 8 of 8) sorted by relevance
/canopennode-2.7.6/example/ |
D | main.c | 131 bool_t syncWas; in tmrTask_thread() local 134 syncWas = CO_process_SYNC(CO, TMR_TASK_INTERVAL); in tmrTask_thread() 137 CO_process_RPDO(CO, syncWas); in tmrTask_thread() 142 CO_process_TPDO(CO, syncWas, TMR_TASK_INTERVAL); in tmrTask_thread()
|
/canopennode-2.7.6/stack/neuberger-socketCAN/ |
D | CO_Linux_threads.c | 139 bool_t syncWas; in CANrx_threadTmr_process() local 155 syncWas = CO_process_SYNC(CO, threadRT.us_interval); in CANrx_threadTmr_process() 157 syncWas = false; in CANrx_threadTmr_process() 160 CO_process_RPDO(CO, syncWas); in CANrx_threadTmr_process() 163 CO_process_TPDO(CO, syncWas, threadRT.us_interval); in CANrx_threadTmr_process()
|
/canopennode-2.7.6/stack/PIC32/ |
D | main_PIC32.c | 280 bool_t syncWas; in __ISR() local 284 syncWas = CO_process_SYNC(CO, 1000); in __ISR() 287 CO_process_RPDO(CO, syncWas); in __ISR() 299 CO_process_TPDO(CO, syncWas, 1000); in __ISR()
|
/canopennode-2.7.6/stack/socketCAN/ |
D | CO_Linux_tasks.c | 283 bool_t syncWas; in CANrx_taskTmr_process() local 286 syncWas = CO_process_SYNC(CO, taskRT.intervalus); in CANrx_taskTmr_process() 289 CO_process_RPDO(CO, syncWas); in CANrx_taskTmr_process() 294 CO_process_TPDO(CO, syncWas, taskRT.intervalus); in CANrx_taskTmr_process()
|
/canopennode-2.7.6/ |
D | CANopen.h | 302 bool_t syncWas); 316 bool_t syncWas,
|
D | CANopen.c | 911 bool_t syncWas = false; in CO_process_SYNC() local 915 syncWas = true; in CO_process_SYNC() 922 return syncWas; in CO_process_SYNC() 929 bool_t syncWas) in CO_process_RPDO() argument 934 CO_RPDO_process(co->RPDO[i], syncWas); in CO_process_RPDO() 942 bool_t syncWas, in CO_process_TPDO() argument 951 CO_TPDO_process(co->TPDO[i], syncWas, timeDifference_us); in CO_process_TPDO()
|
/canopennode-2.7.6/stack/ |
D | CO_PDO.h | 362 void CO_RPDO_process(CO_RPDO_t *RPDO, bool_t syncWas); 379 bool_t syncWas,
|
D | CO_PDO.c | 898 void CO_RPDO_process(CO_RPDO_t *RPDO, bool_t syncWas){ in CO_RPDO_process() argument 905 else if(!RPDO->synchronous || syncWas) in CO_RPDO_process() 973 bool_t syncWas, in CO_TPDO_process() argument 990 else if(TPDO->SYNC && syncWas){ in CO_TPDO_process()
|