A13 Wifi UART1 UART0

Started by ozko, February 26, 2013, 11:22:59 AM

Previous topic - Next topic

ozko

In android I can receive system messages on UART1 through the serial. And Im currently trying to use apps to access serial trough android, they connect to UART1 and I can read, write, but when I try to connect to UART0 the app says "The serial port can not be opened for unknown reason."
I need to use UART0 to surround the system messages that go trough UART1.
And I have noticed that the PDF from olimex does`t describe UART0 its missing on they`r image on the pfd.

vinifr

Hi,

You need to enable UART0 in script.fex:

[uart_para0]
uart_used = 1 <----
uart_port = 0
uart_type = 2
uart_tx = port:PF02<2><1><default><default>
uart_rx = port:PF04<2><1><default><default>

But you need to disable mmc

[mmc0_para]
sdc_used = 0

ozko

Thank you for your help, but I decided to go trough USB  :)
Ill save that for later use if needed thanks again.