UARTStdioInitExpClk do not work.
I am using the hello example as a starting point in learning CCS. Is the virtual com port limited to 115200? I do not see any limitation in the EKS documentation.
(Is there an easy way to paste from CCS to this window? This applet brings up a window that takes about fifteen seconds to paste into it then insert into this window. Messiest interface I have ever seen.)
My first change was to set the 115200 baud to 57600. It did not work. I stepped into UARTStdioInitExpClk (I will call it 'that function' from now on to avoid pasting or typing it out). The arguements initially were set into R0 and R1. The first lines of that function call another function that clobbers R0 and R1. After changing some compiler setting, I get the arguements of that function to be saved in probably the stack. So when I finally do get to MAP_UARTConfigSetExpClk (which I will call 'that other function'), things get screwed up.
Should I not be able to change the baud rate in this example?