This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
i intend to use the enet_s2e Sample project to develop a ethernet product, but when I follow the userguide(SPMA072), atfer following all the steps of 3.1,
it still got lots of error after project build, my CCS is 7.2.0, the TivaWare version is TivaWare_C_Series-2.1.4.178
can you help me to solve this problem?
The error is actually in the preceding line, not the line with the red arrow.
The preceding line says this:
#if configUSE_PORT_OPTIMIZED_TASK_SELECTION == 1
But needs to say this:
#if (configUSE_PORT_OPTIMIZED_TASK_SELECTION == 1)
Sometimes the compiler gets confused by incorrect syntax and does not recognize what is wrong until a different part of the source code.