I am trying to connect to bt modules on dm814x board using UART3 interface.
I try the cmd : "#echo 1111111111111111 >> /dev/ttyO0 ", oscilloscope can grasp signal from uart0-tx pin,
I try the cmd : "#echo 1111111111111111 >> /dev/ttyO3 ",but none signal oscilloscope can grasp from uart3-tx pin,
when boot board,the following msg print
omap_uart.0: ttyO0 at MMIO 0x48020000 (irq = 72) is a OMAP UART0
omap_uart.1: ttyO1 at MMIO 0x48022000 (irq = 73) is a OMAP UART1
omap_uart.2: ttyO2 at MMIO 0x48024000 (irq = 74) is a OMAP UART2
omap_uart.3: ttyO3 at MMIO 0x481a6000 (irq = 44) is a OMAP UART3
omap_uart.4: ttyO4 at MMIO 0x481a8000 (irq = 45) is a OMAP UART4
omap_uart.5: ttyO5 at MMIO 0x481aa000 (irq = 46) is a OMAP UART5
when i have the problem ,i try to fix it use following process,but it does not help.
#if 0
omap_up.uartclk = clk_get_rate(uart_clk);
#else
omap_up.uartclk = OMAP24XX_BASE_BAUD * 16;
#endif
uart pinmux config is ok on uboot,because i can grasp signal use oscilloscope when i send msg use uart3 on uboot
why I try the cmd : "#echo 1111111111111111 >> /dev/ttyO3 ",
but none signal oscilloscope can grasp from uart3-tx pin,
who can help me?
tks!