| 29 | } |
| 30 | |
| 31 | inline void delay(unsigned long ms) { |
| 32 | std::this_thread::sleep_for(std::chrono::milliseconds(ms)); |
| 33 | } |
| 34 | |
| 35 | inline void delayMicroseconds(unsigned long us) { |
| 36 | std::this_thread::sleep_for(std::chrono::microseconds(us)); |
no outgoing calls