samples: blinky_pwm: Fix sample for rpi_pico

The RP2040 needs a DTS overlay for the PWM to work with the
blinky_pwm examples. This commit adds the required overlay.

Signed-off-by: Yonatan Schachter <yonatan.schachter@gmail.com>
This commit is contained in:
Yonatan Schachter 2022-10-30 22:33:12 +02:00 committed by Carles Cufí
parent 85c6de4335
commit c5cb0d1a3b

View File

@ -0,0 +1,9 @@
&pwm_led0 {
status = "okay";
};
&pwm {
status = "okay";
divider-frac-4 = <255>;
divider-int-4 = <255>;
};