This repository was archived by the owner on Jan 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibrary.json
More file actions
30 lines (30 loc) · 1.4 KB
/
library.json
File metadata and controls
30 lines (30 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "megaAVR_TimerInterrupt",
"version": "1.7.0",
"keywords": "timer, interrupt, isr, isr-based, timing, control, hardware-timer, mission-critical, accuracy, megaavr, nano-every, uno-wifi-rev2, atmega4809, atmega4808, atmega3209, atmega3208, atmega1609, atmega1608, atmega809, atmega808",
"description": "This library enables you to use Interrupt from Hardware Timers on an Arduino megaAVR board, such as UNO WiFi Rev2, AVR_NANO_EVERY, etc. 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're 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. Now supporting MegaCoreX.",
"authors":
{
"name": "Khoi Hoang",
"url": "https://github.com/khoih-prog",
"maintainer": true
},
"repository":
{
"type": "git",
"url": "https://github.com/khoih-prog/megaAVR_TimerInterrupt"
},
"homepage": "https://github.com/khoih-prog/megaAVR_TimerInterrupt",
"export": {
"exclude": [
"linux",
"extras",
"tests"
]
},
"license": "MIT",
"frameworks": "*",
"platforms": ["megaavr"],
"examples": "examples/*/*/*.ino",
"headers": ["megaAVR_TimerInterrupt.h", "megaAVR_TimerInterrupt.hpp", "megaAVR_ISR_Timer.h", "megaAVR_ISR_Timer.hpp"]
}