khoih-prog / TimerInterrupt

This library enables you to use Interrupt from Hardware Timers on an Arduino, such as Nano, UNO, Mega, 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.
MIT License
98 stars 11 forks source link

Newer versions missing from platformIO #16

Closed bzuidgeest closed 3 years ago

bzuidgeest commented 3 years ago

Thank you for publishing your work for us to use.

I tried using it thru the library manager in platformIO, but the only version it seems to know about is 1.0.2. I use an 32u4 so I need the latest version. I can copy it from the git repo, but many people might not realize there are newer versions when only looking at PlatformIO. Could you update the plaformIO registry with the newer versions?

khoih-prog commented 3 years ago

Thanks for using the library.

For some unknown reason, PIO hasn't updated the khoih-prog's TimerInterrupt to the latest version, so I had to create a new khoih.prog's TimerInterrupt.

Please use the new one by changing the Author from khoih-prog to khoih.prog or to use the following command to install

$ pio lib install "khoih.prog/TimerInterrupt"
bzuidgeest commented 3 years ago

I found the new version. Thanks for the fast response!