mirror of
https://gitee.com/XZCRAZY/stm32_nfc_lite.git
synced 2026-03-15 10:03:19 +08:00
51 lines
1.6 KiB
C
51 lines
1.6 KiB
C
/**
|
|
******************************************************************************
|
|
* @file : custom_errno.h
|
|
* @brief : Error Code
|
|
******************************************************************************
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Define to prevent recursive inclusion -------------------------------------*/
|
|
#ifndef _CUSTOM_ERRNO_H_
|
|
#define _CUSTOM_ERRNO_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* BSP Common Error codes */
|
|
#define BSP_ERROR_NONE 0
|
|
#define BSP_ERROR_NO_INIT -1
|
|
#define BSP_ERROR_WRONG_PARAM -2
|
|
#define BSP_ERROR_BUSY -3
|
|
#define BSP_ERROR_PERIPH_FAILURE -4
|
|
#define BSP_ERROR_COMPONENT_FAILURE -5
|
|
#define BSP_ERROR_UNKNOWN_FAILURE -6
|
|
#define BSP_ERROR_UNKNOWN_COMPONENT -7
|
|
#define BSP_ERROR_BUS_FAILURE -8
|
|
#define BSP_ERROR_CLOCK_FAILURE -9
|
|
#define BSP_ERROR_MSP_FAILURE -10
|
|
#define BSP_ERROR_FEATURE_NOT_SUPPORTED -11
|
|
|
|
|
|
/* BSP BUS error codes */
|
|
|
|
#define BSP_ERROR_BUS_TRANSACTION_FAILURE -100
|
|
#define BSP_ERROR_BUS_ARBITRATION_LOSS -101
|
|
#define BSP_ERROR_BUS_ACKNOWLEDGE_FAILURE -102
|
|
#define BSP_ERROR_BUS_PROTOCOL_FAILURE -103
|
|
|
|
#define BSP_ERROR_BUS_MODE_FAULT -104
|
|
#define BSP_ERROR_BUS_FRAME_ERROR -105
|
|
#define BSP_ERROR_BUS_CRC_ERROR -106
|
|
#define BSP_ERROR_BUS_DMA_FAILURE -107
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /*CUSTOM_ERRNO_H */
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|