SW: Linux SDK 08.00.00.004
Hi,
My custom board has a AM6442 CPU and a CC1312R1F3RGZT SUB-G.
CC1312R1F3RGZT <-> AM6442 communication should be over UART.
Used balls: C9 (MCU_UART1_RXD) and D9 (MCU_UART1_TXD).
I added this uart in device tree, but could not find it in /dev directory, how this device should appear in /dev ?
I could not find any example for CC1312R1F3RGZT usage with Linux, maybe you can refer me to one?
Here is the device tree part I added in order to use the UART:
mcu_uart1_pins_default: mcu-uart1-pins-default {
pinctrl-single,pins = <
AM64X_MCU_IOPAD(0x4038, PIN_INPUT, 0) /* (C9) MCU_UART1_RXD */
AM64X_MCU_IOPAD(0x403C, PIN_OUTPUT, 0) /* (D9) MCU_UART1_TXD */
>;
};
&mcu_uart1 {
pinctrl-names = "default";
status = "okay";
pinctrl-0 = <&mcu_uart1_pins_default>;
};
Am I missing something?
Thanks