| 10 | static unsigned interruptToggleCount; |
| 11 | |
| 12 | void showInterruptToggleCount(uint32_t toggleCount) |
| 13 | { |
| 14 | Serial << _F("Toggle count hit ") << toggleCount << _F(", current value is ") << interruptToggleCount << '!' |
| 15 | << endl; |
| 16 | Serial << _F("Max tasks queued: ") << System.getMaxTaskCount() << endl; |
| 17 | } |
| 18 | |
| 19 | /** @brief Low-level interrupt handler |
| 20 | * @note An interrupt handling callback must have the IRAM_ATTR attribute. |
nothing calls this directly
no test coverage detected