* CANrx_callback() can read Data Length Code from received CAN message * * See also CO_CANrxMsg_readIdent(): * * @param rxMsg Pointer to received message * @return data length in bytes (0 to 8) */
| 190 | * @return data length in bytes (0 to 8) |
| 191 | */ |
| 192 | static inline uint8_t |
| 193 | CO_CANrxMsg_readDLC(void* rxMsg) { |
| 194 | return 0; |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * CANrx_callback() can read pointer to data from received CAN message |
no outgoing calls
no test coverage detected