综合技术交流
直播中

ss

7年用户 8762经验值
擅长:电源/新能源 制造/封装 RF/无线
私信 关注
[经验]

如何避免Xil_Assert系列宏导致的死循环

  在调试模式下,Xil_Assert系列宏会调用Xil_Assert来检查参数是否正常。如果不正常,缺省情况下,没有打印,会进入死循环。
  通过调用void Xil_AssertSetCallback(Xil_AssertCallback Routine), 设置回调函数, 可以自己处理失败情况,比如增加打印。
  另外也可以修改变量Xil_AssertWait为0,可以避免死循环情况。
  void Xil_Assert(const char8 *File, s32 Line)
  {
  /* if the callback has been set then invoke it */
  if (Xil_AssertCallbackRoutine != 0) {
  (*Xil_AssertCallbackRoutine)(File, Line);
  }
  /* if specified, wait indefinitely such that the assert will show up
  * in testing
  */
  while (Xil_AssertWait != 0) {
  }
  }

更多回帖

发帖
×
20
完善资料,
赚取积分