Tool/software: Code Composer Studio
Hi,
I am using TM4C129EXL Evaluation Board with CCS 7.0.
I am trying to implement a web server from the device and control the board through the webpage exactly like the 'enet_io' example except that with my own custom made web page.
The 'enet_io' example program is written with many layers going deep one into another. Since many functions are called through interrupts and call back functions it is difficult to trace the program flow.
But in the program there are some statements like below:
LWIP_ASSERT("invalid socket state for poll", pcb->state != LISTEN);
LWIP_DEBUGF(HTTPD_DEBUG, ("httpd_init\n"));
I guess these can be used to understand the program flow. But I need to understand how these statements work. Whether the string statements inside the functions will be displayed through the configured UART or it will be displayed in a separate console window.
I checked with the UART COM port. The messages inside the functions are not getting displayed. Whether any MACROs need to be enabled?
Thank You for your time!