Other Parts Discussed in Thread: CONTROLSUITE
Running the usb_dev_serial_cpu01 test application on the c28377D board, requires that I change A:SW1 such that I can send data through the com port to GPIO28.
However what I am seeing running the app is the interface through the pure USB port (the one on the long edge) is working perfectly. I can see the characters I type in the processors memory buffer, when I put a breakpoint in it, and when I manually load data into the buffer through code composer studio it sends that data out through the USB to the com window opened.
Now on the USB_UART side, that is the side that sends data through the UART to the USB part, through the USB on the short side of the board (shared with JTAG) I'm seeing data received, and I'm receiving data after changing A:SW1 to allow reception,... however the data sent out is exactly 64 higher than what is sent... for example if I send a '1' = 49... it receives a 'q' = 113 so 113-49 = 64
similarly if I send a '1' into the part it receives 145.
I have set the baud rate to 115200 8 N 1 as instructed in the code, and verified it at both ends...
Why else might I be experiencing this data mutation? It's very consistent, so every time I type a 1, I get a q output, and every time I type a 2 I get the next letter etc... so it's reliably.
I have made no altercations to the code as you ship it as an example,and aside from the above mentioned change of A:SW1 which is necessary, I'm not sure why else I might be observing this 'mutation' of the data. I am currently using putty as a com package, however I tested this by using MATLAB as well to collect the data, and got the same results, so I don't think its the com package. Right up to where I send the data to the uart in the code, it has the 'correct/desired' value, SO i'ts a bit of a mystery as to where the issue is happening, other than it's isolated to between the UART/USB on the short side of the board that is shared with the JTAG.
Any suggestions as to what might be causing this alteration of the data would be appreciated. Thanks.