Hi Daniel,
The latest OSBDM firmware provides a virtual serial port for OSBDM serial. Please check Windows computer management to check if the serial terminal software is using the correct serial port. And in your serial code, please check if your are using the OSBDM serial port or TWR-SER board serial port. The OSBDM serial is using UART5, while the TWR-SER board is using UART3. You need to double check the <k60_tower.h> configuration:
/*
* Select the serial port that is being used below. Only one of the
* options should be uncommented at any time.
*/
#define SERIAL_CARD // use this option for serial port on TWR-SER
//#define OSJTAG // use this option for serial port over the OS-JTAG circuit
#if (defined(SERIAL_CARD))
#define TERM_PORT UART3_BASE_PTR
#define TERMINAL_BAUD 115200
#undef HW_FLOW_CONTROL
#elif (defined(OSJTAG))
#define TERM_PORT UART5_BASE_PTR
#define TERMINAL_BAUD 115200
#undef HW_FLOW_CONTROL
#else
#error "No valid serial port defined"
#endif
Wish it helps.