Hi guys
I've recently started developing on Embedded Systems, and i'm having issues with the Piccolo. I'm using the standard 2082x example (C:\TI\controlSUITE\device_support\f2802x\v127\DSP2802x_examples_ccsv4\sci_echoback), but when i connect it up and run it, i don't receive the right comms on the other side (i use docklight). I've modified the above example to repetitively send a character (code below), but to no avail. Has anyone had this issue before, or am i doing something really stupid. I'm not sure what you may need to help out, most if it is the generic example...
I've wired it up in UART fashion Tx(piccolo)->Rx(pc) and vice versa, and gnd->gnd. I do also have a usb->serial converter, but the serial port built onto my motherboard gives the same issue
for(;;) {
scia_xmit(0x7E);
}
/// The above prints out 0x03 in docklight repeatedly
Thanks