forked from khoih-prog/TimerInterrupt_Generic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.properties
12 lines (12 loc) · 1.23 KB
/
library.properties
1
2
3
4
5
6
7
8
9
10
11
12
name=TimerInterrupt_Generic
version=1.8.0
author=Khoi Hoang <[email protected]>
maintainer=Khoi Hoang <[email protected]>
sentence=This library enables you to use Interrupt from Hardware Timers on supported Arduino boards such as AVR, Mega-AVR, ESP8266, ESP32, ESP32-S2, SAMD, SAM DUE, nRF52, STM32F/L/H/G/WB/MP1, Teensy, Nano-33-BLE, RP2040-based boards, etc.
paragraph=These Hardware Timers, using Interrupt, still work even if other functions are blocking. Moreover, they are much more precise (certainly depending on clock frequency accuracy) than other software timers using millis() or micros(). That is mandatory if you need to measure some data requiring better accuracy. It now supports 16 ISR-based Timers, while consuming only 1 Hardware Timer. Timers interval is very long (ulong millisecs). The most important feature is they are ISR-based Timers. Therefore, their executions are not blocked by bad-behaving functions or tasks. This important feature is absolutely necessary for mission-critical tasks.
category=Timing, Device Control
url=https://github.com/khoih-prog/TimerInterrupt_Generic
architectures=*
repository=https://github.com/khoih-prog/TimerInterrupt_Generic
license=MIT
includes=TimerInterrupt_Generic.h,ISR_Timer_Generic.h