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.

tm4c123gh6pm 函数 void __error__(char *pcFilename, uint32_t ui32Line);在哪一个文件中

Other Parts Discussed in Thread: TM4C123GH6PM

tm4c123gh6pm 函数 void __error__(char *pcFilename, uint32_t ui32Line);在哪一个文件中;还有他是如何实现的。

还有

#define ASSERT(expr) do \
{ \
if(!(expr)) \
{ \
__error__(__FILE__, __LINE__); \
} \
} \
while(0)

__FILE__, __LINE__这两个的宏定义在哪里,求教