samples: basic: servo_motor: delete nrf52840dk wrong overlay

The overlay was accidentally pushed as part of another commit while
doing some pinctrl/pwm tests.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2022-05-10 20:29:37 +02:00 committed by Carles Cufí
parent e02acca690
commit 23225c68c6

View file

@ -1,23 +0,0 @@
&pinctrl {
pwm0_alt_default: pwm0_alt_default {
group1 {
psels = <NRF_PSEL(PWM_OUT0, 1, 1)>;
};
};
};
&pwm0 {
pinctrl-0 = <&pwm0_alt_default>;
/delete-property/ pinctrl-1;
pinctrl-names = "default";
};
/ {
servo: servo {
compatible = "pwm-servo";
pwms = <&pwm0 0 PWM_MSEC(20) PWM_POLARITY_NORMAL>;
min-pulse = <PWM_USEC(900)>;
max-pulse = <PWM_USEC(2100)>;
};
};