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

Releases: khoih-prog/AVR_Slow_PWM

v1.2.3 to fix `DutyCycle` and `New Period` display bugs

04 Mar 23:41
355eabc
Compare
Choose a tag to compare

Releases v1.2.3

  1. Fix DutyCycle bug. Check float precisison of DutyCycle only sometimes working #3
  2. Fix New Period display bug. Check random dropouts #4
  3. Update examples

v1.2.2 to use `float` for `DutyCycle` and `Freq`, `uint32_t` for `period`. and to optimize code by not calculation in ISR

02 Feb 02:31
42d95b1
Compare
Choose a tag to compare

Releases v1.2.2

  1. Use float for DutyCycle and Freq, uint32_t for period.
  2. Optimize code by not calculation in ISR

v1.2.1 to permit DutyCycle to be optionally updated at the end current PWM period instead of immediately

30 Jan 22:40
7b4b1fb
Compare
Choose a tag to compare

Releases v1.2.1

  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

v1.2.0 to fix `multiple-definitions` linker error, to optimize library code by using reference-passing instead of value-passing and to improve accuracy

30 Jan 05:57
b7dcbd4
Compare
Choose a tag to compare

Releases v1.2.0

  1. Fix multiple-definitions linker error. Drop src_cpp and src_h directories
  2. Add example multiFileProject to demo for multiple-file project
  3. Improve accuracy by using double, instead of uint32_t for dutycycle, period
  4. Optimize library code by using reference-passing instead of value-passing
  5. Update examples accordingly

v1.1.0 to add functions to modify PWM settings on-the-fly

10 Nov 23:46
1272bbc
Compare
Choose a tag to compare

Releases v1.1.0

  1. Add functions to modify PWM settings on-the-fly
  2. Add example to demo how to modify PWM settings on-the-fly

v1.0.0 to support ISR-based multi-channel PWM for AVR-based boards ( AVR boards, such as Mega-2560, UNO, Nano, Leonardo, etc.), using AVR core

27 Sep 06:01
eb1adb4
Compare
Choose a tag to compare

Initial Releases v1.0.0

  1. Initial coding to support AVR boards, such as Mega-2560, UNO,Nano, Leonardo, etc., etc. using AVR core

  2. The hybrid ISR-based PWM channels can generate from very low (much less than 1Hz) to highest PWM frequencies up to 500Hz with acceptable accuracy.