在线时间0 小时
UID232269
ST金币0
蝴蝶豆0
注册时间2010-10-18
新手上路
- 最后登录
- 1970-1-1
|
a0a.1 0b0c
在基本每个主函数里基本最后结尾均有一个void assert_failed()函数
void assert_failed(u8* file, u32 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) */
/* Infinite loop */
while (1)
{
}
}
请问一下这个函数的详细作用是什么呀?
还有main.h是什么作用?
Thanks |
|