| 464 | |
| 465 | |
| 466 | INT8U Can232::isExtendedFrame() { |
| 467 | #ifndef _MCP_FAKE_MODE_ |
| 468 | return lw232CAN? lw232CAN->isExtendedFrame(): 0; |
| 469 | #else |
| 470 | return lw232CanId > 0x7FF ? 1 : 0; //simple hack for fake mode |
| 471 | #endif |
| 472 | } |
| 473 | |
| 474 | |
| 475 | INT8U Can232::checkPassFilter(INT32U addr) { |
nothing calls this directly
no outgoing calls
no test coverage detected