This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
Releases: khoih-prog/nRF52_MBED_Slow_PWM
Releases · khoih-prog/nRF52_MBED_Slow_PWM
v1.2.2 to add support to Seeeduino nRF52840-based boards, such as XIAO_NRF52840 and XIAO_NRF52840_SENSE* etc. using Seeeduino `mbed` core, to add astyle using `allman` style and to restyle the library
v1.2.2 to add support to Seeeduino nRF52840-based boards, such as XIAO_NRF52840 and XIAO_NRF52840_SENSE* etc. using Seeeduino `mbed` core, to add astyle using `allman` style and to restyle the library
Latest
Releases v1.2.2
- Add support to Seeeduino nRF52840-based boards such as SEEED_XIAO_NRF52840 and SEEED_XIAO_NRF52840_SENSE, etc. using Seeeduino
mbed
core - Add astyle using
allman
style. Restyle the library
v1.2.1 to fix `DutyCycle` and `New Period` display bugs.
Releases v1.2.1
- Fix
DutyCycle
bug. Check float precisison of DutyCycle only sometimes working #3 - Fix
New Period
display bug. Check random dropouts #4 - Update examples
v1.2.0 to fix `multiple-definitions` linker error, improve accuracy, DutyCycle to be optionally updated at the end current PWM period instead of immediately, etc.
Releases v1.2.0
- Fix
multiple-definitions
linker error. Dropsrc_cpp
andsrc_h
directories - Improve accuracy by using
float
, instead ofuint32_t
fordutycycle
. Check Change Duty Cycle #1 - DutyCycle to be optionally updated at the end current PWM period instead of immediately. Check DutyCycle to be updated at the end current PWM period #2
- Optimize library code by using
reference-passing
instead ofvalue-passing
- Add example multiFileProject to demo for multiple-file project
- Update examples accordingly
v1.1.0 to add functions to modify PWM settings on-the-fly
Releases v1.1.0
- Add functions to modify PWM settings on-the-fly
- Add example to demo how to modify PWM settings on-the-fly
v1.0.0 to support ISR-based multi-channel PWM for MBED nRF52-based boards (Nano_33_BLE, Nano_33_BLE_Sense, etc), using ArduinoCore-mbed mbed_nano or old mbed (v1.3.2-) core
Initial Releases v1.0.0
- Initial coding to support Nano-33-BLE or Nano-33-BLE_Sense boards using
Arduino mbed_nano core 2.5.2+
for NRF52-based board using mbed_nano core such as Nano-33-BLE if you don't useNRF_TIMER_1
.Arduino mbed core v1.3.2-
for NRF52-based board using mbed-RTOS such as Nano-33-BLE if you'd like to useNRF_TIMER_1
.
- The hybrid ISR-based PWM channels can generate from very low (much less than 1Hz) to highest PWM frequencies up to 1000Hz with acceptable accuracy.