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
+10-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/MBED_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
-
*`ArduinoCore-mbed` Core Version (e.g. `ArduinoCore-mbed` mbed_nano core v3.4.1)
20
+
*`ArduinoCore-mbed` Core Version (e.g. `ArduinoCore-mbed` mbed_nano core v3.5.4)
19
21
*`RP2040` Board type (e.g. Nano_RP2040_Connect, RaspberryPi Pico,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
-
`ArduinoCore-mbed` mbed_nano core v3.4.1
36
+
`ArduinoCore-mbed` mbed_nano core v3.5.4
32
37
Nano_RP2040_Connect
33
38
OS: Ubuntu 20.04 LTS
34
-
Linux xy-Inspiron-3593 5.15.0-52-generic #58~20.04.1-Ubuntu SMP Thu Oct 13 13:09:46 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
1. Add example [PWM_StepperControl](https://github.com/khoih-prog/MBED_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)
31
+
27
32
### Initial Releases v1.0.0
28
33
29
34
1. Initial coding to support RP2040-based boards such as **Nano_RP2040_Connect and RASPBERRY_PI_PICO**, etc. using [**Arduino-mbed** core](https://github.com/arduino/ArduinoCore-mbed)
"description": "This library enables you to use Hardware Timers on RP2040-based RP2040 board to create and output PWM to pins. These PWM channels, using RP2040 Hardware-PWM channels, still work even if other functions are blocking. Moreover, they are much more precise (certainly depending on clock frequency accuracy) than other software ISR-based PWM, using millis(), micros() or Timer Interrupt. This important feature is absolutely necessary for mission-critical tasks. You can start, stop, change and restore the settings of any PWM channel on-the-fly",
0 commit comments