| 11 | |
| 12 | private: |
| 13 | struct Timings { |
| 14 | uint16_t prescaler; |
| 15 | uint8_t sjw; |
| 16 | uint8_t bs1; |
| 17 | uint8_t bs2; |
| 18 | |
| 19 | Timings() |
| 20 | : prescaler(0) |
| 21 | , sjw(0) |
| 22 | , bs1(0) |
| 23 | , bs2(0) |
| 24 | { } |
| 25 | }; |
| 26 | |
| 27 | bool init_bus(const uint32_t bitrate); |
| 28 | void init_once(bool enable_irq); |
nothing calls this directly
no outgoing calls
no test coverage detected