Hello everyone, I'm currently working with the cc2430 chip and trying the SerialApp, right now I'm trying to chage the port ff the UART that comes by default in the test program for the CoordinatorDB but I 'm having some problems and maybe one of you can help me out a little.
I'm trying to enable the UART0 instead of UART1 and I did that (I suppose) changing to TRUE the UART0 like this :
#if HAL_UART
#define HAL_UART_0_ENABLE TRUE
#define HAL_UART_1_ENABLE FALSE
By default the TX is in the P1.6 and I want to change it to the ping P0.3 and I thought that by enabling the UART0 will do it but I was mistaken because I'm not receiving anything. Can anyone tell me what else do I have to do? Maybe I'm have to change a register or parameter that I haven't figure it out yet.
I already check that if I enable the UART0 the Tx and Rx should be in the P0.3 and P0.2 because in the hal_uart.c is :
#define HAL_UART_0_P0_RX_TX 0x0c // Peripheral I/O Select for Rx/Tx.
If anybody can help it will be great!
Thanks
Alejandro R.