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
https://github.com/NordicDeveloperAcademy/ncs-inter/tree/main/lesson4/inter_less4_exer2_solution
Tested with nrf52840dk. The buttons do activate the motor but the LEDs remain turned off.
The text was updated successfully, but these errors were encountered:
It seems it should be (pin p0.13 and not p0.10):
/* STEP 1.4 - Configure which pins your custom pwm0 instance should use */ &pinctrl { pwm0_custom: pwm0_custom { group1 { psels = <NRF_PSEL(PWM_OUT0, 0, 13)>; nordic,invert; }; }; pwm0_csleep: pwm0_csleep { group1 { psels = <NRF_PSEL(PWM_OUT0, 0, 13)>; low-power-enable; }; }; };
But the solution/devacademy exercise steps use:
&pinctrl { pwm0_custom: pwm0_custom { group1 { psels = <NRF_PSEL(PWM_OUT0, 0, 10)>; nordic,invert; }; }; pwm0_csleep: pwm0_csleep { group1 { psels = <NRF_PSEL(PWM_OUT0, 0, 10)>; low-power-enable; }; }; };
Sorry, something went wrong.
No branches or pull requests
https://github.com/NordicDeveloperAcademy/ncs-inter/tree/main/lesson4/inter_less4_exer2_solution
Tested with nrf52840dk. The buttons do activate the motor but the LEDs remain turned off.
The text was updated successfully, but these errors were encountered: