using 2 serial ports problem??

I have been using STR91x demo board from IAR with FreeRTOS successfully. I used the serial port driver, using UART 1, provided in the demo and it works fine. As I was in need of 2 serial ports, I copied the serial port driver, i.e. serial.c, and modified it to use UART 0. But the program just hangs after I call "UART_Init( UART0, &xUART0_Init );". Few observations on the issue: -As UART_Init() works with UART0 and is a function in library provided by ST, I beleive it cannot be wrong. -I rechecked the parameters I am passing to the function and it all seems correct. -I debugged the program using JTAG and found that just after executing the line  "UARTx->LCR &= UART_Parity_Mask;", in function UART_Init() of 91x_uart.c, the program hangs and Jtag also loses the control over the target. Does anybody have any idea what can be wrong? Have anybody successfully used 2 serial ports on STR91x board? Any help will be highly appreciated.

using 2 serial ports problem??

Is it possible that you have interrupts enabled when you create initialise the UART, causing an interrupt to execute immediately and before the infrastructure required by the ISR (queues, tasks, scheduler, etc.) is ready? If you take a look at some of the x86 ports you will see how the port parameter of the serial functions are used to permit more than one UART port. Regards.

using 2 serial ports problem??

Dear Richard, Thank you for your help. I also suspect that the problem is memory corruption due to uninitialized environment. But rather then looking to implement 2 serial ports simultaneously, this time I tried to break up the problem. I tried using _ONLY_ one serial port based on UART0. I changed the serial.c to use UART0 instead of UART1. It was just changing all instances of structure UART1 to UART0, as the internal register and bit definitions are identical for UART1 and UART0. And changing the interrupt service routine to UART0 from UART1. But this time also, the result was same. After calling "UART_Init( UART0, &xUART0_Init );" everything stops. And if I use JTAG then it just halts at "__DebugBreak" i.e the breakpoint instruction. What can be the problem for this behavior? What are the possible places of mistakes which can led to such problem??

using 2 serial ports problem??

I’m also having a similar problem when using 2 com ports. Using one or the other COM port alone works fine, but when I try to use them both simultaneously the code gets stuck in IRQHandler() in 91x_vect_IAR.s. It seems to occur when I first send on COM1, then COM2, then back to COM1. I modified the serial.c example for the STR9 to use 2 COM ports. I created a structure similar to the one in the x86 demo: typedef struct {   xQueueHandle xRxedChars;   xSemaphoreHandle xTxFIFOSemaphore;   portLONG lTaskWaiting;   UART_TypeDef *UART; } portHANDLE; There’s a separate instance of the structure for each com port. Did I missing something? Thanks, Dave

using 2 serial ports problem??

I got the same problem… In my case, I have to use 3 serial port on STR910-eval board. Is there any example code for using more than one serial port on STR910-eval. Thanks.

using 2 serial ports problem??

I’ve solved this problem. Actually it’s not problem. It’s my mistake… /************************* UART ************************/ #define _UART #define _UART0 #define _UART1 #define _UART2 Just uncomment these macros in "at91x_conf.h".