YB_TX_RX_APE_PRJ/Inc/err_num.h

15 lines
467 B
C
Raw Normal View History

2025-03-02 13:41:38 +08:00
#ifndef __ERR_NUM_H__
#define __ERR_NUM_H__
#define OSP_OK (0) /* 正常返回 */
#define OSP_PAR_ILL (1) /* 入参错误 */
#define OSP_PAR_REP (2) /* 入参重复 */
#define OSP_QUE_FULL (3) /* 软队列满 */
#define OSP_QUE_EMPT (4) /* 软队列空 */
#define OSP_MEM_FULL (5) /* 内存申请失败 */
#define OSP_TASK_INIT_ERR (12) /* 任务初始化函数返回失败 */
#endif