我看到固件库中的main.c文件中
void assert_failed(uint8_t* file, uint32_t line)
{
/* User can add his own implementation to report the file name and line number,
ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */
while (1)
{
}
}
只是写了一下,并没有谈到如何使用
请问这个参数查错函数怎么使用,最好有个实例程序参考,还有要进行哪些头文件设置? |