Hi! Could you please help me understand how the SCI_writeCharArray function works? I am trying to implement the sci lab example on my board and I observe a warning sign in the cfg file when i choose pins 18 and 19 for SCI. I'm not able to see any message being displayed on the serial port and the SCITXBUF is 0x0000 even after writing the message using the SCI_writeCharArray function. Here is the reference code.
msg = "\r\n\n\nHello World! Enter a number 0-9 to change the LED blink rate\0";
SCI_writeCharArray(mySCI0_BASE, (uint16_t*)msg, 65);
I'd appreciate any help!