1
0
Fork 0

CO_SYNC: static analysis: ignoring return value of function 'CO_SYNCsend' [MISRA 2012 Directive 4.7, required], [MISRA 2012 Rule 17.7, required]

This commit is contained in:
temi54c1l8 2024-06-27 12:58:54 +02:00
parent 995fed609d
commit 4ae66f9839

View file

@ -393,7 +393,7 @@ CO_SYNC_status_t CO_SYNC_process(CO_SYNC_t *SYNC,
if (SYNC->isProducer) {
if (SYNC->timer >= OD_1006_period) {
syncStatus = CO_SYNC_RX_TX;
CO_SYNCsend(SYNC);
(void)CO_SYNCsend(SYNC);
}
#if ((CO_CONFIG_SYNC) & CO_CONFIG_FLAG_TIMERNEXT) != 0
/* Calculate when next SYNC needs to be sent */