| 33 | } |
| 34 | |
| 35 | inline void delayMicroseconds(unsigned long us) { |
| 36 | std::this_thread::sleep_for(std::chrono::microseconds(us)); |
| 37 | } |
| 38 | |
| 39 | // Mock digital I/O functions |
| 40 | inline void pinMode(int pin, int mode) { |
nothing calls this directly
no outgoing calls
no test coverage detected