-
-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Portenta H7 PWM: Not sure of the Zephyr capabilities/rules #75
Comments
Quick update: He started off with a subset of possible PWM pins:
And turn on PWM: CONFIG_PWM=y First issue we ran into is the same we did with LEDS. The normal pin numbers like D0-xx are again repeated in the second part
I have a version, where instead I keep the PWM table in the same format as the GPIO pin table,
So it is now matching the pins numbers, like: analogWrite(2, 64); likewise for pin4 ... But still the writes were not showing up on the IO pin. So then wondered if it needed the same as the camera clock code in fixups.c and that appears to help.
And with this code being called, it appears like some of the analogWrite code started working but then If I switch to pin 4 it does appear to update, where I change
Not sure what the reason why starting the camera clock enables the others. ??? |
made a few changes this morning to the overlay:
and
the one thing I noticed is that some of the pwm pins show that HRTIMERS are available but I am not seeing them supported in Zephyr or am I reading something wrong. |
I believe that on MBED, that the Arduino pins 3-6 (PG_7, PC_7, PC_6, PA_8), assuming it was implemented, would be handled As you mentioned, I don't believe it is implemented yet. I believe that there is a related issue up there: Although at least some of this may be there: |
looks like some of it added for the f3 and g4 versions but didnt see anything for the H747 |
Ok looks like the best that can be done at this point with the following constraints on the board:
this is the overlay I am currently using: In addition for testing I am using @KurtE's pwm test sketch for consistency:
|
Short version:
a) Can you for each of the timers defines multiple pins that one might use, which may have different settings.
b) If not, Are there Portenta Preferred ones? Like on GIGA something like pins D2-12...
Longer version: On MBED, I believe when you your code calls analogWrite(...) (assuming not DAC pin), it will go through MBED to the table in
https://github.com/arduino/mbed-os/blob/extrapatches-6.17.0/targets/TARGET_STM/TARGET_STM32H7/TARGET_STM32H747xI/TARGET_PORTENTA_H7/PeripheralPins.c#L154-L262
This table (actually whole file) is identical to the GIGA variant.
And it finds the port/pin the the table and setups the corresponding timer/channel.
Now suppose there are valid pins on the Portenta that can all map down to the same timer/channel. Can the device tree handle it.
For example:
And that is not including maybe some that might be TIM3_CH1N. Can we define all of these and hope the user only uses one at a time?
If not is there anything in current documentation which suggests which one should be defined? Guessing maybe in this case PC_6?
The text was updated successfully, but these errors were encountered: