We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Compiling any sample project (e.g. blinky, hello_world) for nucleo_h745zi_q_m7 leads to following error:
nucleo_h745zi_q_m7
devicetree error: missing data after phandle in <Property 'pwms' at '/pwmleds/red_pwm_led' in 'nucleo_h745zi_q_m7.dts.pre.tmp'
To Reproduce Run following command on master: west build -p auto -b nucleo_h745zi_q_m7 samples/hello_world
west build -p auto -b nucleo_h745zi_q_m7 samples/hello_world
Expected behavior The project must compile successfully
Impact Showstopper for all nucleo_h745zi_q_m7 Environment (please complete the following information):
Additional context The fix is trivial: in the file nucleo_h745zi_q_m7.dts the line #29 must be replaced with pwms = <&pwm12 1 4 PWM_POLARITY_NORMAL>;
pwms = <&pwm12 1 4 PWM_POLARITY_NORMAL>;
Corresponding PR were opened: #26314
The text was updated successfully, but these errors were encountered:
boards: nucleo_h745zi_q_m7: fixed pwm bug
92556b1
fixed pwm bug zephyrproject-rtos#26313 Signed-off-by: Alexander Kozhinov <[email protected]>
0f5b9ee
fixed pwm bug #26313 Signed-off-by: Alexander Kozhinov <[email protected]>
Successfully merging a pull request may close this issue.
Describe the bug
Compiling any sample project (e.g. blinky, hello_world) for
nucleo_h745zi_q_m7
leads to following error:To Reproduce
Run following command on master:
west build -p auto -b nucleo_h745zi_q_m7 samples/hello_world
Expected behavior
The project must compile successfully
Impact
Showstopper for all
nucleo_h745zi_q_m7
Environment (please complete the following information):
Additional context
The fix is trivial: in the file nucleo_h745zi_q_m7.dts the line #29 must be replaced with
pwms = <&pwm12 1 4 PWM_POLARITY_NORMAL>;
Corresponding PR were opened: #26314
The text was updated successfully, but these errors were encountered: