Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 94b3eb2

Browse files
authored
v1.2.1 to add mbed_nano platform
### Releases v1.2.1 1. Add **mbed_nano** to list of compatible architectures. For more info, Check [Add mbed_nano to list of compatible architectures #3](#3).
1 parent 78cf1b8 commit 94b3eb2

23 files changed

+87
-32
lines changed

README.md

Lines changed: 39 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
* [Currently supported Boards](#currently-supported-boards)
1818
* [Important Notes about ISR](#important-notes-about-isr)
1919
* [Changelog](#changelog)
20+
* [Releases v1.2.1](#releases-v121)
2021
* [Releases v1.2.0](#releases-v120)
2122
* [Releases v1.1.1](#releases-v111)
2223
* [Releases v1.0.2](#releases-v102)
@@ -127,11 +128,33 @@ The catch is **your function is now part of an ISR (Interrupt Service Routine),
127128

128129
2. Typically global variables are used to pass data between an ISR and the main program. To make sure variables shared between an ISR and the main program are updated correctly, declare them as volatile.
129130

131+
---
132+
133+
### Notes for recent 2.0.0 release of Arduino Mbed OS Boards platform
134+
135+
From [Add mbed_nano to list of compatible architectures #3](https://github.com/khoih-prog/NRF52_MBED_TimerInterrupt/pull/3)
136+
137+
```
138+
In the recent 2.0.0 release of the Arduino Mbed OS Boards platform, the mbed architecture split into four architectures:
139+
140+
mbed_edge: Arduino Edge Control
141+
mbed_nano: Nano 33 BLE and Nano RP2040 Connect
142+
mbed_rp2040: Raspberry Pi Pico
143+
mbed_portenta: Portenta H7
144+
145+
The mbed architecture should be retained for backwards support, but the new mbed_nano should also be added to avoid spurious incompatibility warnings and the library's examples being shown under the File > Examples > INCOMPATIBLE menu of the Arduino IDE when the Nano 33 BLE board is selected.
146+
```
147+
130148
---
131149
---
132150

133151
## Changelog
134152

153+
### Releases v1.2.1
154+
155+
1. Add **mbed_nano** to list of compatible architectures. For more info, Check [Add mbed_nano to list of compatible architectures #3](https://github.com/khoih-prog/NRF52_MBED_TimerInterrupt/pull/3).
156+
157+
135158
### Releases v1.2.0
136159

137160
1. Add better debug feature.
@@ -829,7 +852,7 @@ While software timer, **programmed for 2s, is activated after more than 3.000s i
829852

830853
```
831854
Starting ISR_16_Timers_Array_Complex on Nano 33 BLE
832-
NRF52_MBED_TimerInterrupt v1.2.0
855+
NRF52_MBED_TimerInterrupt v1.2.1
833856
NRF52_MBED_TimerInterrupt: Timer = NRF_TIMER3
834857
NRF52_MBED_TimerInterrupt: _fre = 1000000.00, _count = 10000
835858
Starting ITimer OK, millis() = 714
@@ -1303,7 +1326,7 @@ The following is the sample terminal output when running example [**TimerInterru
13031326

13041327
```
13051328
Starting TimerInterruptTest on Nano 33 BLE
1306-
NRF52_MBED_TimerInterrupt v1.2.0
1329+
NRF52_MBED_TimerInterrupt v1.2.1
13071330
NRF52_MBED_TimerInterrupt: Timer = NRF_TIMER3
13081331
NRF52_MBED_TimerInterrupt: _fre = 1000000.00, _count = 1000000
13091332
Starting ITimer0 OK, millis() = 5660
@@ -1336,7 +1359,7 @@ The following is the sample terminal output when running example [**Argument_Non
13361359

13371360
```
13381361
Starting Argument_None on Nano 33 BLE
1339-
NRF52_MBED_TimerInterrupt v1.2.0
1362+
NRF52_MBED_TimerInterrupt v1.2.1
13401363
NRF52_MBED_TimerInterrupt: Timer = NRF_TIMER1
13411364
NRF52_MBED_TimerInterrupt: _fre = 1000000.00, _count = 500000
13421365
Starting ITimer0 OK, millis() = 1519
@@ -1364,7 +1387,7 @@ The following is the sample terminal output when running example [FakeAnalogWrit
13641387

13651388
```
13661389
Starting FakeAnalogWrite on Nano 33 BLE
1367-
NRF52_MBED_TimerInterrupt v1.2.0
1390+
NRF52_MBED_TimerInterrupt v1.2.1
13681391
NRF52_MBED_TimerInterrupt: Timer = NRF_TIMER3
13691392
NRF52_MBED_TimerInterrupt: _fre = 1000000.00, _count = 100
13701393
Starting ITimer OK, millis() = 1811
@@ -1527,6 +1550,10 @@ Sometimes, the library will only work if you update the board core to the latest
15271550

15281551
## Releases
15291552

1553+
### Releases v1.2.1
1554+
1555+
1. Add **mbed_nano** to list of compatible architectures. For more info, Check PR [Add mbed_nano to list of compatible architectures #3](https://github.com/khoih-prog/NRF52_MBED_TimerInterrupt/pull/3).
1556+
15301557
### Releases v1.2.0
15311558

15321559
1. Add better debug feature.
@@ -1574,6 +1601,7 @@ Submit issues to: [NRF52_MBED_TimerInterrupt issues](https://github.com/khoih-pr
15741601
3. Longer time interval
15751602
4. Similar features for remaining Arduino boards such as AVR, ESP32, ESP8266, STM32, SAM-DUE, SAMD21/SAMD51, nRF52, Teensy, etc.
15761603
5. Add Table of Contents
1604+
6. Add new **mbed_nano** to list of compatible architectures.
15771605

15781606
---
15791607
---
@@ -1582,6 +1610,13 @@ Submit issues to: [NRF52_MBED_TimerInterrupt issues](https://github.com/khoih-pr
15821610

15831611
Many thanks for everyone for bug reporting, new feature suggesting, testing and contributing to the development of this library.
15841612

1613+
1. Thanks to [per1234](https://github.com/per1234) to make PR in [Add mbed_nano to list of compatible architectures #3](https://github.com/khoih-prog/NRF52_MBED_TimerInterrupt/pull/3) leading to the new version v1.2.1 to add new **mbed_nano** to list of compatible architectures.
1614+
1615+
<table>
1616+
<tr>
1617+
<td align="center"><a href="https://github.com/per1234"><img src="https://github.com/per1234.png" width="100px;" alt="per1234"/><br /><sub><b>per1234</b></sub></a><br /></td>
1618+
</tr>
1619+
</table>
15851620

15861621
---
15871622

examples/Argument_None/Argument_None.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132

3233
/*

examples/Change_Interval/Change_Interval.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132

3233
/*

examples/FakeAnalogWrite/FakeAnalogWrite.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132
/*
3233
Notes:

examples/ISR_16_Timers_Array/ISR_16_Timers_Array.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132
/*
3233
Notes:

examples/ISR_16_Timers_Array_Complex/ISR_16_Timers_Array_Complex.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132
/*
3233
Notes:

examples/SwitchDebounce/SwitchDebounce.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132
/*
3233
Notes:

examples/TimerInterruptLEDDemo/TimerInterruptLEDDemo.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132

3233
/*

examples/TimerInterruptTest/TimerInterruptTest.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132
/*
3233
Notes:

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "NRF52_MBED_TimerInterrupt",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"keywords": "timing,device,control,timer,interrupt,hardware,isr,isr-based,hardware-timer,mission-critical,accuracy,precise,non-blocking,nrf52,mbed",
55
"description": "This library enables you to use Interrupt from Hardware Timers on an NRF52-based board using mbed-RTOS such as Nano-33-BLE. 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. 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's necessary if you need to measure some data requiring better accuracy.",
66
"authors":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=NRF52_MBED_TimerInterrupt
2-
version=1.2.0
2+
version=1.2.1
33
author=Khoi Hoang <[email protected]>
44
maintainer=Khoi Hoang <[email protected]>
55
sentence=This library enables you to use Interrupt from Hardware Timers on an NRF52-based board using mbed-RTOS such as Nano-33-BLE.

src/NRF52_MBED_ISR_Timer-Impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132

3233
#pragma once

src/NRF52_MBED_ISR_Timer.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132

3233
#pragma once
@@ -39,7 +40,7 @@
3940
#endif
4041

4142
#ifndef NRF52_MBED_TIMER_INTERRUPT_VERSION
42-
#define NRF52_MBED_TIMER_INTERRUPT_VERSION "NRF52_MBED_TimerInterrupt v1.2.0"
43+
#define NRF52_MBED_TIMER_INTERRUPT_VERSION "NRF52_MBED_TimerInterrupt v1.2.1"
4344
#endif
4445

4546
#include "TimerInterrupt_Generic_Debug.h"

src/NRF52_MBED_TimerInterrupt.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132
/*
3233
nRF52 has 5 Hardware TIMERs: NRF_TIMER0-NRF_TIMER4
@@ -82,7 +83,7 @@
8283
#include "hal/nrf_timer.h"
8384

8485
#ifndef NRF52_MBED_TIMER_INTERRUPT_VERSION
85-
#define NRF52_MBED_TIMER_INTERRUPT_VERSION "NRF52_MBED_TimerInterrupt v1.2.0"
86+
#define NRF52_MBED_TIMER_INTERRUPT_VERSION "NRF52_MBED_TimerInterrupt v1.2.1"
8687
#endif
8788

8889
#include "TimerInterrupt_Generic_Debug.h"

src/TimerInterrupt_Generic_Debug.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132

3233
#pragma once

src_cpp/NRF52_MBED_ISR_Timer.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132

3233
#include "NRF52_MBED_ISR_Timer.h"

src_cpp/NRF52_MBED_ISR_Timer.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@
1919
Based on BlynkTimer.h
2020
Author: Volodymyr Shymanskyy
2121
22-
Version: 1.2.0
22+
Version: 1.2.1
2323
2424
Version Modified By Date Comments
2525
------- ----------- ---------- -----------
2626
1.0.1 K Hoang 22/11/2020 Initial coding and sync with NRF52_TimerInterrupt
2727
1.0.2 K Hoang 23/11/2020 Add and optimize examples
2828
1.1.1 K.Hoang 06/12/2020 Add Change_Interval example. Bump up version to sync with other TimerInterrupt Libraries
2929
1.2.0 K.Hoang 11/01/2021 Add better debug feature. Optimize code and examples to reduce RAM usage
30+
1.2.1 K.Hoang 04/05/2021 Add mbed_nano to list of compatible architectures
3031
*****************************************************************************************************************************/
3132

3233
#pragma once
@@ -39,7 +40,7 @@
3940
#endif
4041

4142
#ifndef NRF52_MBED_TIMER_INTERRUPT_VERSION
42-
#define NRF52_MBED_TIMER_INTERRUPT_VERSION "NRF52_MBED_TimerInterrupt v1.2.0"
43+
#define NRF52_MBED_TIMER_INTERRUPT_VERSION "NRF52_MBED_TimerInterrupt v1.2.1"
4344
#endif
4445

4546
#include "TimerInterrupt_Generic_Debug.h"

0 commit comments

Comments
 (0)