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/Portenta_H7_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_portenta core v3.4.1)
20
+
*`ArduinoCore-mbed` Core Version (e.g. `ArduinoCore-mbed` mbed_portenta core v3.5.4)
19
21
*`Portenta_H7` Board type (e.g. Portenta_H7 Rev2 ABX00042, 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_portenta core v3.4.1
36
+
`ArduinoCore-mbed` mbed_portenta core v3.5.4
32
37
Portenta_H7 Rev2 ABX00042
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
Copy file name to clipboardExpand all lines: changelog.md
+5
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,7 @@
16
16
## Table of Contents
17
17
18
18
*[Changelog](#changelog)
19
+
*[Releases v2.0.3](#Releases-v203)
19
20
*[Releases v2.0.2](#Releases-v202)
20
21
*[Releases v2.0.1](#Releases-v201)
21
22
*[Releases v2.0.0](#Releases-v200)
@@ -26,6 +27,10 @@
26
27
27
28
## Changelog
28
29
30
+
### Releases v2.0.3
31
+
32
+
1. Add example [PWM_StepperControl](https://github.com/khoih-prog/Portenta_H7_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)
"description": "This library enables you to use Hardware Timers on an STM32H7-based Portenta_H7 board to create and output PWM to pins. These PWM channels, using Portenta_H7 Hardware Timers, still work even if other functions are blocking. Moreover, they are much more precise (certainly depending on clock frequency accuracy) than other software ir 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