Hi,
I am working on tms570 Uart Bootloader application note and its code. This code works very well. I want to use other SCI port to communicate, I figured out that if I change sciREG1 and sciREG2, sciPORT1 and sciPORT2 adresses each other, communication should work on other SCI port. RX port works well but TX port did not work. Why tx pin did not work
* This pointer is used by the SCI driver to access the sci module registers.
*/
#define sciREG1 ((sciBASE_t *)0xFFF7E500U)
/** @def sciPORT1
* @brief SCI1 GIO Port Register Pointer
*
* Pointer used by the GIO driver to access I/O PORT of SCI1
* (use the GIO drivers to access the port pins).
*/
#define sciPORT1 ((gioPORT_t *)0xFFF7E540U)
/** @def sciREG2
* @brief SCI2 Register Frame Pointer
*
* This pointer is used by the SCI driver to access the sci module registers.
*/
#define sciREG2 ((sciBASE_t *)0xFFF7E400U)
/** @def sciPORT2
* @brief SCI2 GIO Port Register Pointer
*
* Pointer used by the GIO driver to access I/O PORT of SCI2
* (use the GIO drivers to access the port pins).
*/
#define sciPORT2 ((gioPORT_t *)0xFFF7E440U)
How can i work with other sci port.