Other Parts Discussed in Thread: CC2650, CC2640
Tool/software: TI-RTOS
I have not been able to get the simple_peripheral_CC2650_lp project to display anything on the debug channel:
I removed the following project predefines:
BOARD_DISPLAY_EXCLUDE_UART
Display_DISABLE_ALL
xdc_runtime_Assert_DISABLE_ALL
xdc_runtime_Log_DISABLE_ALL
The board type was changed to: CC2650DK_4XS
Anything else I need to do? (I was unsuccessful with the Launchpad CC2650 as well).
Windows 10 Settings (VM)
------------------------
Device Manager shows: XDS100V3 Class USB Serial Port (COM14)
Putty Setup: Serial-115200, 8N1, COM14
The putty port does disconnect when I unpower the board, so it seems to detect something. Bit nothing ever displays (not even garbage chars).
Here is what main() looks like:
int main()
{
/* Register Application callback to trap asserts raised in the Stack */
RegisterAssertCback(AssertHandler);
PIN_init(BoardGpioInitTable);
//dispHandle = Display_open(Display_Type_UART, NULL);
//Display_print0(dispHandle, 0, 0, ">>>TEST");
// Enable iCache prefetching
VIMSConfigure(VIMS_BASE, TRUE, TRUE);
// Enable cache
VIMSModeSet(VIMS_BASE, VIMS_MODE_ENABLED);
/* Initialize ICall module */
ICall_init();
/* Start tasks of external images - Priority 5 */
ICall_createRemoteTasks();
/* Kick off profile - Priority 3 */
GAPRole_createTask();
SimpleBLEPeripheral_createTask();
/* enable interrupts and start SYS/BIOS */
BIOS_start();
return 0;
}
