| 393 | } |
| 394 | |
| 395 | INT8U Can232::checkReceive() { |
| 396 | #ifndef _MCP_FAKE_MODE_ |
| 397 | return lw232CAN? lw232CAN->checkReceive(): CAN_NOMSG; |
| 398 | #else |
| 399 | return CAN_MSGAVAIL; |
| 400 | #endif |
| 401 | } |
| 402 | |
| 403 | INT8U Can232::readMsgBufID(INT32U *ID, INT8U *len, INT8U buf[]) { |
| 404 | #ifndef _MCP_FAKE_MODE_ |
nothing calls this directly
no outgoing calls
no test coverage detected