64aaef56dc
Add a board revision D for the s32z270dc2_r52 boards and make the existing revision B the default. The main difference between these revisions affecting current Zephyr port is the USB/UART port that was moved from LINFlexD instance 0 to 9. Signed-off-by: Manuel Argüelles <manuel.arguelles@nxp.com>
19 lines
240 B
Plaintext
19 lines
240 B
Plaintext
/*
|
|
* Copyright 2023 NXP
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
chosen {
|
|
zephyr,console = &uart9;
|
|
zephyr,shell-uart = &uart9;
|
|
};
|
|
};
|
|
|
|
&uart9 {
|
|
pinctrl-0 = <&uart9_default>;
|
|
pinctrl-names = "default";
|
|
status = "okay";
|
|
};
|