fs_x_panic.c

来自「ucfsv2.36 trail,包含VC工作空间」· C语言 代码 · 共 41 行

C
41
字号
/*
**********************************************************************
*                          Micrium, Inc.
*                      949 Crestview Circle
*                     Weston,  FL 33327-1848
*
*                            uC/FS
*
*             (c) Copyright 2001 - 2006, Micrium, Inc.
*                      All rights reserved.
*
***********************************************************************

----------------------------------------------------------------------
---------------------------------------------------------------------
File        : FS_X_Panic.c
Purpose     : Panic routine.
              Referred in debug builds of the file system only and
              called only in case of fatal, unrecoverable errors.
---------------------------END-OF-HEADER------------------------------
*/
#include "FS.h"

/*********************************************************************
*
*       Public code
*
**********************************************************************
*/


/*********************************************************************
*
*       FS_X_Panic
*/
void FS_X_Panic(int ErrorCode) {
  while (1);
}

/*************************** End of file ****************************/

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?