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 Feb 4, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+8-3
Original file line number
Diff line number
Diff line change
@@ -10,28 +10,33 @@ However, before reporting a bug please check through the following:
10
10
11
11
If you don't find anything, please [open a new issue](https://github.com/khoih-prog/RP2040_PWM/issues/new).
12
12
13
+
---
14
+
13
15
### How to submit a bug report
14
16
15
17
Please ensure to specify the following:
16
18
17
19
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
18
-
*`RP2040` Core Version (e.g. Arduino-mbed RP2040 v3.4.1 or arduino-pico core v2.6.3)
20
+
*`RP2040` Core Version (e.g. Arduino-mbed RP2040 v3.5.4 or arduino-pico core v2.7.1)
19
21
*`RP2040` Board type (e.g. NANO_RP2040_CONNECT, RASPBERRY_PI_PICO, RASPBERRY_PI_PICO_W, ADAFRUIT_FEATHER_RP2040, GENERIC_RP2040, etc.)
20
22
* Contextual information (e.g. what you were trying to achieve)
21
23
* Simplest possible steps to reproduce
22
24
* Anything that might be relevant in your opinion, such as:
23
25
* Operating system (Windows, Ubuntu, etc.) and the output of `uname -a`
24
26
* Network configuration
25
27
28
+
Please be educated, civilized and constructive as you've always been. Disrespective posts against [GitHub Code of Conduct](https://docs.github.com/en/site-policy/github-terms/github-event-code-of-conduct) will be ignored and deleted.
29
+
30
+
---
26
31
27
32
### Example
28
33
29
34
```
30
35
Arduino IDE version: 1.8.19
31
-
Arduino-mbed mbed_nano v3.4.1
36
+
Arduino-mbed mbed_nano v3.5.4
32
37
NANO_RP2040_CONNECT Module
33
38
OS: Ubuntu 21.04 LTS
34
-
Linux xy-Inspiron-3593 5.15.0-53-generic #59~20.04.1-Ubuntu SMP Thu Oct 20 15:10:22 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
39
+
Linux xy-Inspiron-3593 5.15.0-58-generic #64~20.04.1-Ubuntu SMP Fri Jan 6 16:42:31 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
[PWM] PWM enabled, slice = 5 , top = 1000 , div = 10 , level = 0
@@ -802,7 +804,7 @@ Submit issues to: [RP2040_PWM issues](https://github.com/khoih-prog/RP2040_PWM/i
802
804
14. Add `minimal` example [PWM_Basic](https://github.com/khoih-prog/RP2040_PWM/tree/main/examples/PWM_Basic)
803
805
15. Fix glitch when dynamically changing dutycycle. Check [Changing Duty Cycle Dynamically Creates Runt PWM pulse #10](https://github.com/khoih-prog/RP2040_PWM/issues/10)
804
806
16. Adjust `MIN_PWM_FREQUENCY` and `MAX_PWM_FREQUENCY` dynamically according to actual `F_CPU`
805
-
807
+
17. Add example [PWM_StepperControl](examples/PWM_StepperControl) to demo how to control Stepper Motor using PWM
806
808
807
809
---
808
810
---
@@ -822,6 +824,8 @@ Many thanks for everyone for bug reporting, new feature suggesting, testing and
822
824
4. Thanks to [Dr. Benjamin Bird](https://github.com/Chick92) to make PR
823
825
-[added minimal viable program to get the user up and running #9](https://github.com/khoih-prog/RP2040_PWM/pull/9) leading to v1.3.1
824
826
5. Thanks to [Rocking Y Productions](https://github.com/RockingYProductions) to request enhancement in [Changing Duty Cycle Dynamically Creates Runt PWM pulse #10](https://github.com/khoih-prog/RP2040_PWM/issues/10), leading to v1.4.0
827
+
6. Thanks to [Paul van Dinther](https://github.com/dinther) for proposing new way to use PWM to drive `Stepper-Motor` in [Using PWM to step a stepper driver #16](https://github.com/khoih-prog/RP2040_PWM/issues/16), leading to v1.4.1
828
+
825
829
826
830
<table>
827
831
<tr>
@@ -830,6 +834,7 @@ Many thanks for everyone for bug reporting, new feature suggesting, testing and
Copy file name to clipboardExpand all lines: changelog.md
+6
Original file line number
Diff line number
Diff line change
@@ -11,12 +11,14 @@
11
11
<ahref="https://www.buymeacoffee.com/khoihprog6"title="Donate to my libraries using BuyMeACoffee"><imgsrc="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"alt="Donate to my libraries using BuyMeACoffee"style="height: 50px!important;width: 181px!important;" ></a>
12
12
<ahref="https://www.buymeacoffee.com/khoihprog6"title="Donate to my libraries using BuyMeACoffee"><imgsrc="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-orange.svg?logo=buy-me-a-coffee&logoColor=FFDD00"style="height: 20px!important;width: 200px!important;" ></a>
13
13
14
+
14
15
---
15
16
---
16
17
17
18
## Table of Contents
18
19
19
20
*[Changelog](#changelog)
21
+
*[Releases v1.4.1](#Releases-v141)
20
22
*[Releases v1.4.0](#Releases-v140)
21
23
*[Releases v1.3.1](#Releases-v131)
22
24
*[Releases v1.3.0](#Releases-v130)
@@ -35,6 +37,10 @@
35
37
36
38
## Changelog
37
39
40
+
### Releases v1.4.1
41
+
42
+
1. Add example [PWM_StepperControl](https://github.com/khoih-prog/RP2040_PWM/examples/PWM_StepperControl) to demo how to control Stepper Motor using PWM. Check [Using PWM to step a stepper driver #16](https://github.com/khoih-prog/RP2040_PWM/issues/16)
43
+
38
44
### Releases v1.4.0
39
45
40
46
1. Fix glitch when dynamically changing dutycycle. Check [Changing Duty Cycle Dynamically Creates Runt PWM pulse #10](https://github.com/khoih-prog/RP2040_PWM/issues/10)
0 commit comments