13 lines
161 B
C
13 lines
161 B
C
|
#ifndef BSP_H
|
||
|
#define BSP_H
|
||
|
|
||
|
|
||
|
#define BSP_OK (0)
|
||
|
#define BSP_ERR (-1)
|
||
|
#define BSP_ERR_NULL (-2)
|
||
|
#define BSP_ERR_INITED (-3)
|
||
|
#define BSP_ERR_NO_DEV (-4)
|
||
|
|
||
|
|
||
|
#endif
|