Many dts/dtsi files where its dt-bindings are in-tree do not include zephyr prefix in the #include path. Add it to make it consistent globally. Some dt-bindings that resides in hal can not be changed. Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
28 lines
410 B
Plaintext
28 lines
410 B
Plaintext
/*
|
|
* Copyright (c) 2025 Jonas Berg
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/dt-bindings/pinctrl/rpi-pico-rp2040-pinctrl.h>
|
|
|
|
&pinctrl {
|
|
uart1_default: uart1_default {
|
|
group1 {
|
|
pinmux = <UART1_TX_P4>;
|
|
};
|
|
|
|
group2 {
|
|
pinmux = <UART1_RX_P5>;
|
|
input-enable;
|
|
};
|
|
};
|
|
|
|
adc_default: adc_default {
|
|
group1 {
|
|
pinmux = <ADC_CH2_P28>, <ADC_CH3_P29>;
|
|
input-enable;
|
|
};
|
|
};
|
|
};
|