| 45 | Can232* Can232::_instance = 0; |
| 46 | |
| 47 | Can232* Can232::instance() { |
| 48 | if (_instance == 0) |
| 49 | _instance = new Can232(); |
| 50 | return _instance; |
| 51 | } |
| 52 | |
| 53 | void Can232::init(INT8U defaultCanSpeed, const INT8U clock) { |
| 54 | dbg_begin(LW232_DEFAULT_BAUD_RATE); // logging through software serial |
nothing calls this directly
no outgoing calls
no test coverage detected