boards: custom_plank: migrate to pinctrl
The board still used deprecated nRF *-pin properties, migrate it to pinctrl. Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
parent
62957ec09f
commit
8b3555951d
26
boards/arm/custom_plank/custom_plank-pinctrl.dtsi
Normal file
26
boards/arm/custom_plank/custom_plank-pinctrl.dtsi
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2022 Nordic Semiconductor ASA
|
||||||
|
* SPDX-License-Identifier: Apache-2.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
&pinctrl {
|
||||||
|
uart0_default: uart0_default {
|
||||||
|
group1 {
|
||||||
|
psels = <NRF_PSEL(UART_TX, 0, 6)>,
|
||||||
|
<NRF_PSEL(UART_RX, 0, 8)>,
|
||||||
|
<NRF_PSEL(UART_RTS, 0, 5)>,
|
||||||
|
<NRF_PSEL(UART_CTS, 0, 7)>;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
uart0_sleep: uart0_sleep {
|
||||||
|
group1 {
|
||||||
|
psels = <NRF_PSEL(UART_TX, 0, 6)>,
|
||||||
|
<NRF_PSEL(UART_RX, 0, 8)>,
|
||||||
|
<NRF_PSEL(UART_RTS, 0, 5)>,
|
||||||
|
<NRF_PSEL(UART_CTS, 0, 7)>;
|
||||||
|
low-power-enable;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
|
@ -5,6 +5,7 @@
|
||||||
|
|
||||||
/dts-v1/;
|
/dts-v1/;
|
||||||
#include <nordic/nrf52840_qiaa.dtsi>
|
#include <nordic/nrf52840_qiaa.dtsi>
|
||||||
|
#include "custom_plank-pinctrl.dtsi"
|
||||||
|
|
||||||
/ {
|
/ {
|
||||||
model = "Custom Plank Board";
|
model = "Custom Plank Board";
|
||||||
|
@ -31,8 +32,7 @@
|
||||||
status = "okay";
|
status = "okay";
|
||||||
|
|
||||||
current-speed = <115200>;
|
current-speed = <115200>;
|
||||||
tx-pin = <6>;
|
pinctrl-0 = <&uart0_default>;
|
||||||
rx-pin = <8>;
|
pinctrl-1 = <&uart0_sleep>;
|
||||||
rts-pin = <5>;
|
pinctrl-names = "default", "sleep";
|
||||||
cts-pin = <7>;
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue