| 123456789101112131415161718192021222324 |
- #ifndef HM_ERROR_H
- #define HM_ERROR_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define HM_SUCCESS 0 /* Success */
- #define HM_NOT_OPEN 1 /* Device not open */
- #define HM_NO_MEMORY 2 /* Memory is not enough */
- #define HM_THREAD_ERROR 3 /* Thread error */
- #define HM_UART_SEND_ERR 4 /* Uart send error */
- #define HM_HCI_CMD_ERROR 5 /* HCI command error */
- #define HM_CHIPSET_INIT_ERROR 6 /* Chipset init error */
- #define HM_OPEN_FILE_ERROR 7 /* Open file error */
- #define HM_CHIPSET_INIT_FILE_ERROR 8 /* Chipset init file is error */
- #define HM_TIMEOUT 9 /* Timeout */
- #define HM_NOT_SUPPORT 10 /* HCI Middleware not support now */
- #ifdef __cplusplus
- }
- #endif
- #endif /* HM_ERROR_H */
|