You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 29, 2023. It is now read-only.
### Releases v1.2.2
1. Add support to Seeeduino nRF52840-based boards such as **SEEED_XIAO_NRF52840 and SEEED_XIAO_NRF52840_SENSE**, etc. using Seeeduino `mbed` core
2. Add astyle using `allman` style. Restyle the library
Copy file name to clipboardExpand all lines: README.md
+29-24Lines changed: 29 additions & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -123,7 +123,8 @@ The catch is **your function is now part of an ISR (Interrupt Service Routine),
123
123
124
124
### Currently supported Boards
125
125
126
-
1.**nRF52_MBED-based boards** such as Nano-33-BLE or Nano-33-BLE_Sense, etc., using [`Arduino mbed_nano core 2.5.2+`](https://github.com/arduino/ArduinoCore-mbed) or [`Arduino mbed core v1.3.2-`](https://github.com/arduino/ArduinoCore-mbed/releases/tag/1.3.2)
126
+
1.**MBED nRF52840-based boards such as Nano_33_BLE, Nano_33_BLE_Sense**, etc. using [**Arduino-mbed mbed_nano** core](https://github.com/arduino/ArduinoCore-mbed)
127
+
2.**Seeeduino nRF52840-based boards such as SEEED_XIAO_NRF52840 and SEEED_XIAO_NRF52840_SENSE**, etc. using Seeeduino `mbed` core
127
128
128
129
---
129
130
@@ -139,10 +140,11 @@ The catch is **your function is now part of an ISR (Interrupt Service Routine),
139
140
## Prerequisites
140
141
141
142
1.[`Arduino IDE 1.8.19+` for Arduino](https://github.com/arduino/Arduino). [](https://github.com/arduino/Arduino/releases/latest)
142
-
2.[`Arduino mbed_nano core 2.7.2+`](https://github.com/arduino/ArduinoCore-mbed) for NRF52-based board using mbed-RTOS such as Nano-33-BLE if you don't use `NRF_TIMER_1`. [](https://github.com/arduino/ArduinoCore-mbed/releases/latest)
143
+
2.[`Arduino mbed_nano core 3.4.1+`](https://github.com/arduino/ArduinoCore-mbed) for NRF52-based board using mbed-RTOS such as Nano-33-BLE if you don't use `NRF_TIMER_1`. [](https://github.com/arduino/ArduinoCore-mbed/releases/latest)
143
144
3.[`Arduino mbed core v1.3.2-`](https://github.com/arduino/ArduinoCore-mbed/releases/tag/1.3.2) for NRF52-based board using mbed-RTOS such as Nano-33-BLE if you'd like to use `NRF_TIMER_1`. [](https://github.com/arduino/ArduinoCore-mbed/releases/latest)
145
+
4.`Seeeduino mbed core 2.7.2+` for Seeeduino nRF52840-based boards such as **SEEED_XIAO_NRF52840 and SEEED_XIAO_NRF52840_SENSE**
144
146
145
-
4. To use with certain example
147
+
5. To use with certain example
146
148
-[`SimpleTimer library`](https://github.com/jfturcot/SimpleTimer) for [ISR_16_PWMs_Array_Complex example](examples/ISR_16_PWMs_Array_Complex).
147
149
---
148
150
---
@@ -159,9 +161,9 @@ You can also use this link [ page.
162
-
2. Download the latest release `nRF52_MBED_Slow_PWM-master.zip`.
163
-
3. Extract the zip file to `nRF52_MBED_Slow_PWM-master` directory
164
-
4. Copy whole `nRF52_MBED_Slow_PWM-master` folder to Arduino libraries' directory such as `~/Arduino/libraries/`.
164
+
2. Download the latest release `nRF52_MBED_Slow_PWM-main.zip`.
165
+
3. Extract the zip file to `nRF52_MBED_Slow_PWM-main` directory
166
+
4. Copy whole `nRF52_MBED_Slow_PWM-main` folder to Arduino libraries' directory such as `~/Arduino/libraries/`.
165
167
166
168
### VS Code & PlatformIO
167
169
@@ -180,14 +182,14 @@ The current library implementation, using `xyz-Impl.h` instead of standard `xyz.
180
182
181
183
You can include this `.hpp` file
182
184
183
-
```
185
+
```cpp
184
186
// Can be included as many times as necessary, without `Multiple Definitions` Linker Error
in many files. But be sure to use the following `.h` file **in just 1 `.h`, `.cpp` or `.ino` file**, which must **not be included in any other file**, to avoid `Multiple Definitions` Linker Error
189
191
190
-
```
192
+
```cpp
191
193
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
0 commit comments