Hello!
What changes need to be made to get the K40 tower to output serial data to the serial port card so I can read the data stream in Hyperterminal? I had this all fixed up in MQX 3.7 but that doesn't seem to work in 3.8.
I've changed user_config.h
BSPCFG_ENABLE_TTYD 1
and changed twrk40x256.h
#ifndef BSP_DEFAULT_IO_CHANNEL
#if BSPCFG_ENABLE_TTYA
//#define BSP_DEFAULT_IO_CHANNEL "ttya:" /* OSJTAG-COM polled mode */
#define BSP_DEFAULT_IO_CHANNEL "ttyd:" // Tower serial polled mode
#define BSP_DEFAULT_IO_CHANNEL_DEFINED
#else
//#define BSP_DEFAULT_IO_CHANNEL NULL
#endif
#endif
It's always a challenge to get this running again. Thanks!