@brief Set timer interval in microseconds */
| 362 | |
| 363 | /** @brief Set timer interval in microseconds */ |
| 364 | __forceinline bool IRAM_ATTR setIntervalUs(TimeType microseconds) |
| 365 | { |
| 366 | return setInterval<NanoTime::Microseconds>(microseconds); |
| 367 | } |
| 368 | |
| 369 | /** @brief Set timer interval in microseconds (static check) */ |
| 370 | template <TimeType microseconds> __forceinline void IRAM_ATTR setIntervalUs() |
no outgoing calls
no test coverage detected