errcode
errcode 提供错误码注册、注销与触发上报功能,支持通过回调函数上报各模块产生的错误码。
头文件清单
#include "include/errcode.h"
接口清单
Functions
uapi_errcode_register_report_callback
errcode_register_report_callback uapi errcode register report callback uapi_errcode_register_report_callback
void uapi_errcode_register_report_callback(errcode_report_callback_t cb)
头文件清单
#include "include/errcode.h"
功能说明
- 注册错误码上报回调函数
- 当错误码产生时,通过已注册的回调函数进行上报
- 回调函数类型为 errcode_report_callback_t
入参
| 名称 |
参数类型 |
详细说明 |
约束取值范围 |
| cb |
errcode_report_callback_t |
错误码上报回调函数指针 |
非 NULL |
uapi_errcode_unregister_report_callback
errcode_unregister_report_callback uapi errcode unregister report callback uapi_errcode_unregister_report_callback
void uapi_errcode_unregister_report_callback(void)
头文件清单
#include "include/errcode.h"
功能说明
- 注销已注册的错误码上报回调函数
- 注销后不再触发错误码上报回调
- 无参数无返回值
uapi_errcode_invoke_report
errcode_invoke_report uapi errcode invoke report uapi_errcode_invoke_report
void uapi_errcode_invoke_report(uint8_t module, errcode_t err)
头文件清单
#include "include/errcode.h"
功能说明
- 触发指定模块的错误码上报
- 通过已注册的回调函数上报 module 和 err 信息
- module 标识错误码所属模块,err 为具体错误码值
入参
| 名称 |
参数类型 |
详细说明 |
约束取值范围 |
| module |
uint8_t |
模块标识 |
0 ~ 255 |
| err |
errcode_t |
错误码 |
0 ~ 0xFFFFFFFF |
Type definitions
errcode_t [SDK公共基础类型]
errcode t errcode_t
typedef uint32_t errcode_t;
使用说明
用作 uapi_errcode_invoke_report 接口的 err 参数类型
errcode_report_callback_t
errcode report callback t errcode_report_callback_t report_callback_t
typedef void (*errcode_report_callback_t)(uint8_t module, errcode_t err);
使用说明
用作 uapi_errcode_register_report_callback 接口的 cb 参数类型
Enumerations
errcode_module_id_t
errcode module id t errcode_module_id_t module_id_t
typedef enum errcode_module_id {
ERRCODE_MODULE_NV = 0,
} errcode_module_id_t;
| 枚举成员 |
取值 |
描述 |
| ERRCODE_MODULE_NV |
0 |
NV 模块标识 |
Macros
ERRCODE_SUCC
errcode succ errcode_succ
ERRCODE_FAIL
errcode fail errcode_fail
#define ERRCODE_FAIL 0xFFFFFFFF
ERRCODE_INVALID_PARAM
errcode invalid param errcode_invalid_param invalid_param
#define ERRCODE_INVALID_PARAM 0x80000001
ERRCODE_NOT_SUPPORT
errcode not support errcode_not_support not_support
#define ERRCODE_NOT_SUPPORT 0x80000002
ERRCODE_MEMSET
errcode memset errcode_memset
#define ERRCODE_MEMSET 0x80000003
ERRCODE_MEMCPY
errcode memcpy errcode_memcpy
#define ERRCODE_MEMCPY 0x80000004
ERRCODE_MALLOC
errcode malloc errcode_malloc
#define ERRCODE_MALLOC 0x80000005
ERRCODE_HASH_REG_ADDR_INVALID
errcode hash reg addr invalid errcode_hash_reg_addr_invalid hash_reg_addr_invalid
#define ERRCODE_HASH_REG_ADDR_INVALID 0x80000080
ERRCODE_HASH_INVALID_PARAMETER
errcode hash invalid parameter errcode_hash_invalid_parameter hash_invalid_parameter
#define ERRCODE_HASH_INVALID_PARAMETER 0x80000081
ERRCODE_HASH_UNSUPPORTED
errcode hash unsupported errcode_hash_unsupported hash_unsupported
#define ERRCODE_HASH_UNSUPPORTED 0x80000082
ERRCODE_HASH_FAILED_MEM
errcode hash failed mem errcode_hash_failed_mem hash_failed_mem
#define ERRCODE_HASH_FAILED_MEM 0x80000083
ERRCODE_HASH_BUSY
errcode hash busy errcode_hash_busy hash_busy
#define ERRCODE_HASH_BUSY 0x80000084
ERRCODE_HASH_TIMEOUT
errcode hash timeout errcode_hash_timeout hash_timeout
#define ERRCODE_HASH_TIMEOUT 0x80000085
ERRCODE_GPIO_DIR_SET_FAIL
errcode gpio dir set fail errcode_gpio_dir_set_fail gpio_dir_set_fail
#define ERRCODE_GPIO_DIR_SET_FAIL 0x80001000
ERRCODE_GPIO_NOT_INIT
errcode gpio not init errcode_gpio_not_init gpio_not_init
#define ERRCODE_GPIO_NOT_INIT 0x80001001
ERRCODE_GPIO_RELEASE_FAIL
errcode gpio release fail errcode_gpio_release_fail gpio_release_fail
#define ERRCODE_GPIO_RELEASE_FAIL 0x80001002
ERRCODE_GPIO_REG_ADDR_INVALID
errcode gpio reg addr invalid errcode_gpio_reg_addr_invalid gpio_reg_addr_invalid
#define ERRCODE_GPIO_REG_ADDR_INVALID 0x80001003
ERRCODE_GPIO_INIT_TRX_STATE_FAIL
errcode gpio init trx state fail errcode_gpio_init_trx_state_fail gpio_init_trx_state_fail
#define ERRCODE_GPIO_INIT_TRX_STATE_FAIL 0x80001004
ERRCODE_GPIO_ADD_QUEUE_FAIL
errcode gpio add queue fail errcode_gpio_add_queue_fail gpio_add_queue_fail
#define ERRCODE_GPIO_ADD_QUEUE_FAIL 0x80001005
ERRCODE_GPIO_STATE_MISMATCH
errcode gpio state mismatch errcode_gpio_state_mismatch gpio_state_mismatch
#define ERRCODE_GPIO_STATE_MISMATCH 0x80001006
ERRCODE_GPIO_NOT_IMPLEMENT
errcode gpio not implement errcode_gpio_not_implement gpio_not_implement
#define ERRCODE_GPIO_NOT_IMPLEMENT 0x80001007
ERRCODE_GPIO_ALREADY_SET_CALLBACK
errcode gpio already set callback errcode_gpio_already_set_callback gpio_already_set_callback
#define ERRCODE_GPIO_ALREADY_SET_CALLBACK 0x80001008
ERRCODE_CALENDAR_NOT_INIT
calendar_not_init errcode calendar not init errcode_calendar_not_init
#define ERRCODE_CALENDAR_NOT_INIT 0x80001020
ERRCODE_CALENDAR_INVALID_PARAMETER
calendar_invalid_parameter errcode calendar invalid parameter errcode_calendar_invalid_parameter
#define ERRCODE_CALENDAR_INVALID_PARAMETER 0x80001021
ERRCODE_CALENDAR_GET_DATETIME_FAILURE
calendar_get_datetime_failure errcode calendar get datetime failure errcode_calendar_get_datetime_failure
#define ERRCODE_CALENDAR_GET_DATETIME_FAILURE 0x80001022
ERRCODE_CALENDAR_GET_TIMESTAMP_FAILURE
calendar_get_timestamp_failure errcode calendar get timestamp failure errcode_calendar_get_timestamp_failure
#define ERRCODE_CALENDAR_GET_TIMESTAMP_FAILURE 0x80001023
ERRCODE_CALENDAR_FAILURE
calendar_failure errcode calendar failure errcode_calendar_failure
#define ERRCODE_CALENDAR_FAILURE 0x80001024
ERRCODE_UART_NOT_INIT
errcode uart not init errcode_uart_not_init uart_not_init
#define ERRCODE_UART_NOT_INIT 0x80001040
ERRCODE_UART_CLAIM_FAIL
errcode uart claim fail errcode_uart_claim_fail uart_claim_fail
#define ERRCODE_UART_CLAIM_FAIL 0x80001041
ERRCODE_UART_RELEASE_FAIL
errcode uart release fail errcode_uart_release_fail uart_release_fail
#define ERRCODE_UART_RELEASE_FAIL 0x80001042
ERRCODE_UART_REG_ADDR_INVALID
errcode uart reg addr invalid errcode_uart_reg_addr_invalid uart_reg_addr_invalid
#define ERRCODE_UART_REG_ADDR_INVALID 0x80001043
ERRCODE_UART_INIT_TRX_STATE_FAIL
errcode uart init trx state fail errcode_uart_init_trx_state_fail uart_init_trx_state_fail
#define ERRCODE_UART_INIT_TRX_STATE_FAIL 0x80001044
ERRCODE_UART_ADD_QUEUE_FAIL
errcode uart add queue fail errcode_uart_add_queue_fail uart_add_queue_fail
#define ERRCODE_UART_ADD_QUEUE_FAIL 0x80001045
ERRCODE_UART_STATE_MISMATCH
errcode uart state mismatch errcode_uart_state_mismatch uart_state_mismatch
#define ERRCODE_UART_STATE_MISMATCH 0x80001046
ERRCODE_UART_NOT_IMPLEMENT
errcode uart not implement errcode_uart_not_implement uart_not_implement
#define ERRCODE_UART_NOT_IMPLEMENT 0x80001047
ERRCODE_UART_DMA_CFG_PARAM_INVALID
errcode uart dma cfg param invalid errcode_uart_dma_cfg_param_invalid uart_dma_cfg_param_invalid
#define ERRCODE_UART_DMA_CFG_PARAM_INVALID 0x80001048
ERRCODE_UART_DMA_BUFF_NULL
errcode uart dma buff null errcode_uart_dma_buff_null uart_dma_buff_null
#define ERRCODE_UART_DMA_BUFF_NULL 0x80001049
ERRCODE_UART_DMA_SHAKING_INVALID_OR_UART_FUNCS_NULL
errcode uart dma shaking invalid or uart funcs null errcode_uart_dma_shaking_invalid_or_uart_funcs_null uart_dma_shaking_invalid_or_uart_funcs_null
#define ERRCODE_UART_DMA_SHAKING_INVALID_OR_UART_FUNCS_NULL 0x8000104A
errcode uart dma configure fail errcode_uart_dma_configure_fail uart_dma_configure_fail
#define ERRCODE_UART_DMA_CONFIGURE_FAIL 0x8000104B
ERRCODE_UART_DMA_START_TRANSFER_FAIL
errcode uart dma start transfer fail errcode_uart_dma_start_transfer_fail uart_dma_start_transfer_fail
#define ERRCODE_UART_DMA_START_TRANSFER_FAIL 0x8000104C
ERRCODE_UART_DMA_TRANSFER_TIMEOUT
errcode uart dma transfer timeout errcode_uart_dma_transfer_timeout uart_dma_transfer_timeout
#define ERRCODE_UART_DMA_TRANSFER_TIMEOUT 0x8000104D
ERRCODE_UART_DMA_TRANSFER_ERROR
errcode uart dma transfer error errcode_uart_dma_transfer_error uart_dma_transfer_error
#define ERRCODE_UART_DMA_TRANSFER_ERROR 0x8000104E
ERRCODE_UART_DMA_TRANSFER_BUSY
errcode uart dma transfer busy errcode_uart_dma_transfer_busy uart_dma_transfer_busy
#define ERRCODE_UART_DMA_TRANSFER_BUSY 0x8000104F
ERRCODE_UART_DMA_HEAD_WRONG
errcode uart dma head wrong errcode_uart_dma_head_wrong uart_dma_head_wrong
#define ERRCODE_UART_DMA_HEAD_WRONG 0x80001050
ERRCODE_UART_DMA_BUFF_OVERSIZE
errcode uart dma buff oversize errcode_uart_dma_buff_oversize uart_dma_buff_oversize
#define ERRCODE_UART_DMA_BUFF_OVERSIZE 0x80001051
ERRCODE_UART_PARITY_ERROR
errcode uart parity error errcode_uart_parity_error uart_parity_error
#define ERRCODE_UART_PARITY_ERROR 0x80001052
ERROCDE_UART_TRANSFER_TIMEOUT
#define ERROCDE_UART_TRANSFER_TIMEOUT 0x80001053
ERRCODE_PWM_NOT_INIT
errcode pwm not init errcode_pwm_not_init pwm_not_init
#define ERRCODE_PWM_NOT_INIT 0x80001080
ERRCODE_PWM_NOT_OPEN
errcode pwm not open errcode_pwm_not_open pwm_not_open
#define ERRCODE_PWM_NOT_OPEN 0x80001081
ERRCODE_PWM_INVALID_PARAMETER
errcode pwm invalid parameter errcode_pwm_invalid_parameter pwm_invalid_parameter
#define ERRCODE_PWM_INVALID_PARAMETER 0x80001082
ERRCODE_PWM_REG_ADDR_INVALID
errcode pwm reg addr invalid errcode_pwm_reg_addr_invalid pwm_reg_addr_invalid
#define ERRCODE_PWM_REG_ADDR_INVALID 0x80001083
ERRCODE_PWM_NOT_POWER_ON
errcode pwm not power on errcode_pwm_not_power_on pwm_not_power_on
#define ERRCODE_PWM_NOT_POWER_ON 0x80001084
ERRCODE_USB_DEVICE_INFO_WRONG
errcode usb device info wrong errcode_usb_device_info_wrong usb_device_info_wrong
#define ERRCODE_USB_DEVICE_INFO_WRONG 0x800010A0
ERRCODE_USB_INIT_FAILED
errcode usb init failed errcode_usb_init_failed usb_init_failed
#define ERRCODE_USB_INIT_FAILED 0x800010A1
ERRCODE_USB_HID_DEVICE_OPENED
errcode usb hid device opened errcode_usb_hid_device_opened usb_hid_device_opened
#define ERRCODE_USB_HID_DEVICE_OPENED 0x800010A2
ERRCODE_USB_HID_EXIT_EVENT
errcode usb hid exit event errcode_usb_hid_exit_event usb_hid_exit_event
#define ERRCODE_USB_HID_EXIT_EVENT 0x800010A3
ERRCODE_USB_HID_MEMCPY_FAIL
errcode usb hid memcpy fail errcode_usb_hid_memcpy_fail usb_hid_memcpy_fail
#define ERRCODE_USB_HID_MEMCPY_FAIL 0x800010A4
ERRCODE_USB_HID_DEVICE_NOT_LOADED
errcode usb hid device not loaded errcode_usb_hid_device_not_loaded usb_hid_device_not_loaded
#define ERRCODE_USB_HID_DEVICE_NOT_LOADED 0x800010A5
ERRCODE_USB_HID_INTERFACE_OVERSIZE
errcode usb hid interface oversize errcode_usb_hid_interface_oversize usb_hid_interface_oversize
#define ERRCODE_USB_HID_INTERFACE_OVERSIZE 0x800010A6
ERRCODE_DMA_NOT_INIT
dma_not_init errcode dma not init errcode_dma_not_init
#define ERRCODE_DMA_NOT_INIT 0x80001100
ERRCODE_DMA_REG_ADDR_INVALID
dma_reg_addr_invalid errcode dma reg addr invalid errcode_dma_reg_addr_invalid
#define ERRCODE_DMA_REG_ADDR_INVALID 0x80001101
ERRCODE_DMA_INVALID_PARAMETER
dma_invalid_parameter errcode dma invalid parameter errcode_dma_invalid_parameter
#define ERRCODE_DMA_INVALID_PARAMETER 0x80001102
ERRCODE_DMA_RET_NO_AVAIL_CH
dma_ret_no_avail_ch errcode dma ret no avail ch errcode_dma_ret_no_avail_ch
#define ERRCODE_DMA_RET_NO_AVAIL_CH 0x80001103
ERRCODE_DMA_RET_ERROR_CONFIG
dma_ret_error_config errcode dma ret error config errcode_dma_ret_error_config
#define ERRCODE_DMA_RET_ERROR_CONFIG 0x80001104
ERRCODE_DMA_RET_HANDSHAKING_USING
dma_ret_handshaking_using errcode dma ret handshaking using errcode_dma_ret_handshaking_using
#define ERRCODE_DMA_RET_HANDSHAKING_USING 0x80001105
ERRCODE_DMA_LLI_CFG_ERROR
dma_lli_cfg_error errcode dma lli cfg error errcode_dma_lli_cfg_error
#define ERRCODE_DMA_LLI_CFG_ERROR 0x80001106
ERRCODE_DMA_CH_BUSY
dma_ch_busy errcode dma ch busy errcode_dma_ch_busy
#define ERRCODE_DMA_CH_BUSY 0x80001107
ERRCODE_DMA_RET_ERROR_ADDRESS_ALIGN
dma_ret_error_address_align errcode dma ret error address align errcode_dma_ret_error_address_align
#define ERRCODE_DMA_RET_ERROR_ADDRESS_ALIGN 0x80001108
ERRCODE_DMA_RET_TOO_MANY_DATA_TO_TRANSFER
dma_ret_too_many_data_to_transfer errcode dma ret too many data to transfer errcode_dma_ret_too_many_data_to_transfer
#define ERRCODE_DMA_RET_TOO_MANY_DATA_TO_TRANSFER 0x80001109
ERRCODE_DMA_RET_ADDRESS_ACCESS_ERROR
dma_ret_address_access_error errcode dma ret address access error errcode_dma_ret_address_access_error
#define ERRCODE_DMA_RET_ADDRESS_ACCESS_ERROR 0x80001110
ERRCODE_UDMA_NOT_INIT
errcode udma not init errcode_udma_not_init udma_not_init
#define ERRCODE_UDMA_NOT_INIT 0x80001120
ERRCODE_UDMA_INVALID_PARAMETER
errcode udma invalid parameter errcode_udma_invalid_parameter udma_invalid_parameter
#define ERRCODE_UDMA_INVALID_PARAMETER 0x80001121
ERRCODE_UDMA_CHANNEL_NOT_OPEN
errcode udma channel not open errcode_udma_channel_not_open udma_channel_not_open
#define ERRCODE_UDMA_CHANNEL_NOT_OPEN 0x80001122
ERRCODE_UDMA_MALLOC_FAIL
errcode udma malloc fail errcode_udma_malloc_fail udma_malloc_fail
#define ERRCODE_UDMA_MALLOC_FAIL 0x80001123
ERRCODE_UDMA_INCOMPLETE_CONFIG
errcode udma incomplete config errcode_udma_incomplete_config udma_incomplete_config
#define ERRCODE_UDMA_INCOMPLETE_CONFIG 0x80001124
ERRCODE_UDMA_ONE_TIME_BATCHED_CONFIGS_EXCEEDED
errcode udma one time batched configs exceeded errcode_udma_one_time_batched_configs_exceeded udma_one_time_batched_configs_exceeded
#define ERRCODE_UDMA_ONE_TIME_BATCHED_CONFIGS_EXCEEDED 0x80001125
ERRCODE_UDMA_CONFIG_QUEUE_FULL
errcode udma config queue full errcode_udma_config_queue_full udma_config_queue_full
#define ERRCODE_UDMA_CONFIG_QUEUE_FULL 0x80001126
ERRCODE_UDMA_NO_AVAIL_CH
errcode udma no avail ch errcode_udma_no_avail_ch udma_no_avail_ch
#define ERRCODE_UDMA_NO_AVAIL_CH 0x80001127
ERRCODE_ADC_REG_ADDR_INVALID
adc_reg_addr_invalid errcode adc reg addr invalid errcode_adc_reg_addr_invalid
#define ERRCODE_ADC_REG_ADDR_INVALID 0x80001140
ERRCODE_ADC_INVALID_PARAMETER
adc_invalid_parameter errcode adc invalid parameter errcode_adc_invalid_parameter
#define ERRCODE_ADC_INVALID_PARAMETER 0x80001141
ERRCODE_ADC_SCAN_NOT_DISABLE
adc_scan_not_disable errcode adc scan not disable errcode_adc_scan_not_disable
#define ERRCODE_ADC_SCAN_NOT_DISABLE 0x80001142
ERRCODE_ADC_INVALID_SAMPLE_VALUE
adc_invalid_sample_value errcode adc invalid sample value errcode_adc_invalid_sample_value
#define ERRCODE_ADC_INVALID_SAMPLE_VALUE 0x80001143
ERRCODE_ADC_INVALID_CH_TYPE
adc_invalid_ch_type errcode adc invalid ch type errcode_adc_invalid_ch_type
#define ERRCODE_ADC_INVALID_CH_TYPE 0x80001144
ERRCODE_ADC_TIMEOUT
adc_timeout errcode adc timeout errcode_adc_timeout
#define ERRCODE_ADC_TIMEOUT 0x80001145
ERRCODE_SYSTICK_NOT_INIT
errcode systick not init errcode_systick_not_init systick_not_init
#define ERRCODE_SYSTICK_NOT_INIT 0x80001160
ERRCODE_SYSTICK_NOT_CLEARED
errcode systick not cleared errcode_systick_not_cleared systick_not_cleared
#define ERRCODE_SYSTICK_NOT_CLEARED 0x80001161
ERRCODE_SYSTICK_REG_ADDR_INVALID
errcode systick reg addr invalid errcode_systick_reg_addr_invalid systick_reg_addr_invalid
#define ERRCODE_SYSTICK_REG_ADDR_INVALID 0x80001162
ERRCODE_SYSTICK_NOT_IMPLEMENT
errcode systick not implement errcode_systick_not_implement systick_not_implement
#define ERRCODE_SYSTICK_NOT_IMPLEMENT 0x80001163
ERRCODE_SYSTICK_INIT_STATE_FAIL
errcode systick init state fail errcode_systick_init_state_fail systick_init_state_fail
#define ERRCODE_SYSTICK_INIT_STATE_FAIL 0x80001164
ERRCODE_TCXO_REG_ADDR_INVALID
errcode tcxo reg addr invalid errcode_tcxo_reg_addr_invalid tcxo_reg_addr_invalid
#define ERRCODE_TCXO_REG_ADDR_INVALID 0x80001180
ERRCODE_PIN_INVALID_PARAMETER
errcode pin invalid parameter errcode_pin_invalid_parameter pin_invalid_parameter
#define ERRCODE_PIN_INVALID_PARAMETER 0x80001190
ERRCODE_PIN_MODE_NO_FUNC
errcode pin mode no func errcode_pin_mode_no_func pin_mode_no_func
#define ERRCODE_PIN_MODE_NO_FUNC 0x80001191
ERRCODE_PIN_NOT_INIT
errcode pin not init errcode_pin_not_init pin_not_init
#define ERRCODE_PIN_NOT_INIT 0x80001192
ERRCODE_WDT_REG_ADDR_INVALID
errcode wdt reg addr invalid errcode_wdt_reg_addr_invalid wdt_reg_addr_invalid
#define ERRCODE_WDT_REG_ADDR_INVALID 0x80001200
ERRCODE_QDEC_INVALID_STATE
errcode qdec invalid state errcode_qdec_invalid_state qdec_invalid_state
#define ERRCODE_QDEC_INVALID_STATE 0x80001210
ERRCODE_QDEC_INVALID_PARAMETER
errcode qdec invalid parameter errcode_qdec_invalid_parameter qdec_invalid_parameter
#define ERRCODE_QDEC_INVALID_PARAMETER 0x80001211
ERRCODE_QDEC_DOUBLE_TRANSITION
errcode qdec double transition errcode_qdec_double_transition qdec_double_transition
#define ERRCODE_QDEC_DOUBLE_TRANSITION 0x80001212
ERRCODE_QDEC_REG_ADDR_INVALID
errcode qdec reg addr invalid errcode_qdec_reg_addr_invalid qdec_reg_addr_invalid
#define ERRCODE_QDEC_REG_ADDR_INVALID 0x80001213
ERRCODE_KEYSCAN_NOT_INIT
errcode keyscan not init errcode_keyscan_not_init keyscan_not_init
#define ERRCODE_KEYSCAN_NOT_INIT 0x80001220
ERRCODE_KEYSCAN_NOT_POWER_ON
errcode keyscan not power on errcode_keyscan_not_power_on keyscan_not_power_on
#define ERRCODE_KEYSCAN_NOT_POWER_ON 0x80001221
ERRCODE_KEYSCAN_POWER_ON
errcode keyscan power on errcode_keyscan_power_on keyscan_power_on
#define ERRCODE_KEYSCAN_POWER_ON 0x80001222
ERRCODE_KEYSCAN_NULL
errcode keyscan null errcode_keyscan_null keyscan_null
#define ERRCODE_KEYSCAN_NULL 0x80001223
ERRCODE_KEYSCAN_MAP_WRONG_SIZE
errcode keyscan map wrong size errcode_keyscan_map_wrong_size keyscan_map_wrong_size
#define ERRCODE_KEYSCAN_MAP_WRONG_SIZE 0x80001224
ERRCODE_KEYSCAN_SAFE_FUNC_FAIL
errcode keyscan safe func fail errcode_keyscan_safe_func_fail keyscan_safe_func_fail
#define ERRCODE_KEYSCAN_SAFE_FUNC_FAIL 0x80001225
ERRCODE_KEYSCAN_NOT_ALLOW_TO_SLEEP
errcode keyscan not allow to sleep errcode_keyscan_not_allow_to_sleep keyscan_not_allow_to_sleep
#define ERRCODE_KEYSCAN_NOT_ALLOW_TO_SLEEP 0x80001226
ERRCODE_TRNG_REG_ADDR_INVALID
errcode trng reg addr invalid errcode_trng_reg_addr_invalid trng_reg_addr_invalid
#define ERRCODE_TRNG_REG_ADDR_INVALID 0x80001230
ERRCODE_TRNG_INVALID_PARAMETER
errcode trng invalid parameter errcode_trng_invalid_parameter trng_invalid_parameter
#define ERRCODE_TRNG_INVALID_PARAMETER 0x80001231
ERRCODE_TRNG_TIMEOUT
errcode trng timeout errcode_trng_timeout trng_timeout
#define ERRCODE_TRNG_TIMEOUT 0x80001232
ERRCODE_PKE_REG_ADDR_INVALID
errcode pke reg addr invalid errcode_pke_reg_addr_invalid pke_reg_addr_invalid
#define ERRCODE_PKE_REG_ADDR_INVALID 0x80001240
ERRCODE_PKE_INVALID_PARAMETER
errcode pke invalid parameter errcode_pke_invalid_parameter pke_invalid_parameter
#define ERRCODE_PKE_INVALID_PARAMETER 0x80001241
ERRCODE_PKE_UNSUPPORTED
errcode pke unsupported errcode_pke_unsupported pke_unsupported
#define ERRCODE_PKE_UNSUPPORTED 0x80001242
ERRCODE_PKE_INVALID_PADDING
errcode pke invalid padding errcode_pke_invalid_padding pke_invalid_padding
#define ERRCODE_PKE_INVALID_PADDING 0x80001243
ERRCODE_PKE_ENV_NOT_READY
errcode pke env not ready errcode_pke_env_not_ready pke_env_not_ready
#define ERRCODE_PKE_ENV_NOT_READY 0x80001244
ERRCODE_PKE_FAILED_MEM
errcode pke failed mem errcode_pke_failed_mem pke_failed_mem
#define ERRCODE_PKE_FAILED_MEM 0x80001245
ERRCODE_PKE_TIMEOUT
errcode pke timeout errcode_pke_timeout pke_timeout
#define ERRCODE_PKE_TIMEOUT 0x80001246
ERRCODE_KM_REG_ADDR_INVALID
errcode km reg addr invalid errcode_km_reg_addr_invalid km_reg_addr_invalid
#define ERRCODE_KM_REG_ADDR_INVALID 0x80001260
ERRCODE_KM_INVALID_PARAMETER
errcode km invalid parameter errcode_km_invalid_parameter km_invalid_parameter
#define ERRCODE_KM_INVALID_PARAMETER 0x80001261
ERRCODE_KM_UNSUPPORTED
errcode km unsupported errcode_km_unsupported km_unsupported
#define ERRCODE_KM_UNSUPPORTED 0x80001262
ERRCODE_KM_ENV_NOT_READY
errcode km env not ready errcode_km_env_not_ready km_env_not_ready
#define ERRCODE_KM_ENV_NOT_READY 0x80001263
ERRCODE_KM_KEYSLOT_BUSY
errcode km keyslot busy errcode_km_keyslot_busy km_keyslot_busy
#define ERRCODE_KM_KEYSLOT_BUSY 0x80001264
ERRCODE_KM_FAILED_MEM
errcode km failed mem errcode_km_failed_mem km_failed_mem
#define ERRCODE_KM_FAILED_MEM 0x80001265
ERRCODE_KM_TIMEOUT
errcode km timeout errcode_km_timeout km_timeout
#define ERRCODE_KM_TIMEOUT 0x80001266
ERRCODE_CIPHER_REG_ADDR_INVALID
cipher_reg_addr_invalid errcode cipher reg addr invalid errcode_cipher_reg_addr_invalid
#define ERRCODE_CIPHER_REG_ADDR_INVALID 0x80001280
ERRCODE_CIPHER_INVALID_PARAMETER
cipher_invalid_parameter errcode cipher invalid parameter errcode_cipher_invalid_parameter
#define ERRCODE_CIPHER_INVALID_PARAMETER 0x80001281
ERRCODE_CIPHER_UNSUPPORTED
cipher_unsupported errcode cipher unsupported errcode_cipher_unsupported
#define ERRCODE_CIPHER_UNSUPPORTED 0x80001282
ERRCODE_CIPHER_FAILED_MEM
cipher_failed_mem errcode cipher failed mem errcode_cipher_failed_mem
#define ERRCODE_CIPHER_FAILED_MEM 0x80001283
ERRCODE_CIPHER_ENV_NOT_READY
cipher_env_not_ready errcode cipher env not ready errcode_cipher_env_not_ready
#define ERRCODE_CIPHER_ENV_NOT_READY 0x80001284
ERRCODE_CIPHER_SIZE_NOT_ALIGNED
cipher_size_not_aligned errcode cipher size not aligned errcode_cipher_size_not_aligned
#define ERRCODE_CIPHER_SIZE_NOT_ALIGNED 0x80001285
ERRCODE_CIPHER_BUSY
cipher_busy errcode cipher busy errcode_cipher_busy
#define ERRCODE_CIPHER_BUSY 0x80001286
ERRCODE_CIPHER_TIMEOUT
cipher_timeout errcode cipher timeout errcode_cipher_timeout
#define ERRCODE_CIPHER_TIMEOUT 0x80001287
ERRCODE_I2C_NOT_INIT
errcode i2c not init errcode_i2c_not_init i2c_not_init
#define ERRCODE_I2C_NOT_INIT 0x80001300
ERRCODE_I2C_ALREADY_INIT
errcode i2c already init errcode_i2c_already_init i2c_already_init
#define ERRCODE_I2C_ALREADY_INIT 0x80001301
ERRCODE_I2C_INVALID_PARAMETER
errcode i2c invalid parameter errcode_i2c_invalid_parameter i2c_invalid_parameter
#define ERRCODE_I2C_INVALID_PARAMETER 0x80001302
ERRCODE_I2C_NOT_IMPLEMENT
errcode i2c not implement errcode_i2c_not_implement i2c_not_implement
#define ERRCODE_I2C_NOT_IMPLEMENT 0x80001303
ERRCODE_I2C_EVENT_INIT_FAILURE
errcode i2c event init failure errcode_i2c_event_init_failure i2c_event_init_failure
#define ERRCODE_I2C_EVENT_INIT_FAILURE 0x80001304
ERRCODE_I2C_RATE_INVALID
errcode i2c rate invalid errcode_i2c_rate_invalid i2c_rate_invalid
#define ERRCODE_I2C_RATE_INVALID 0x80001305
ERRCODE_I2C_ADDRESS_INVLID
errcode i2c address invlid errcode_i2c_address_invlid i2c_address_invlid
#define ERRCODE_I2C_ADDRESS_INVLID 0x80001306
ERRCODE_I2C_PERMISSION_INVALID
errcode i2c permission invalid errcode_i2c_permission_invalid i2c_permission_invalid
#define ERRCODE_I2C_PERMISSION_INVALID 0x80001307
ERRCODE_I2C_NO_VALID_DATA
errcode i2c no valid data errcode_i2c_no_valid_data i2c_no_valid_data
#define ERRCODE_I2C_NO_VALID_DATA 0x80001308
ERRCODE_I2C_SEND_PARAM_INVALID
errcode i2c send param invalid errcode_i2c_send_param_invalid i2c_send_param_invalid
#define ERRCODE_I2C_SEND_PARAM_INVALID 0x80001309
ERRCODE_I2C_RECEIVE_PARAM_INVALID
errcode i2c receive param invalid errcode_i2c_receive_param_invalid i2c_receive_param_invalid
#define ERRCODE_I2C_RECEIVE_PARAM_INVALID 0x80001310
ERRCODE_I2C_WAIT_EXCEPTION
errcode i2c wait exception errcode_i2c_wait_exception i2c_wait_exception
#define ERRCODE_I2C_WAIT_EXCEPTION 0x80001311
ERRCODE_I2C_WAIT_CONTINUE
errcode i2c wait continue errcode_i2c_wait_continue i2c_wait_continue
#define ERRCODE_I2C_WAIT_CONTINUE 0x80001312
ERRCODE_I2C_TIMEOUT
errcode i2c timeout errcode_i2c_timeout i2c_timeout
#define ERRCODE_I2C_TIMEOUT 0x80001313
ERRCODE_I2C_ACK_ERR
errcode i2c ack err errcode_i2c_ack_err i2c_ack_err
#define ERRCODE_I2C_ACK_ERR 0x80001314
ERRCODE_I2C_MUTEX_PROC_FAIL
errcode i2c mutex proc fail errcode_i2c_mutex_proc_fail i2c_mutex_proc_fail
#define ERRCODE_I2C_MUTEX_PROC_FAIL 0x80001315
ERRCODE_I2C_DMA_CONFIG_ERROR
errcode i2c dma config error errcode_i2c_dma_config_error i2c_dma_config_error
#define ERRCODE_I2C_DMA_CONFIG_ERROR 0x80001316
ERRCODE_I2C_DMA_TRANSFER_ERROR
errcode i2c dma transfer error errcode_i2c_dma_transfer_error i2c_dma_transfer_error
#define ERRCODE_I2C_DMA_TRANSFER_ERROR 0x80001317
ERRCODE_TIMER_NO_ENOUGH
errcode timer no enough errcode_timer_no_enough timer_no_enough
#define ERRCODE_TIMER_NO_ENOUGH 0x80001320
ERRCODE_TIEMR_NOT_CREATED
errcode tiemr not created errcode_tiemr_not_created tiemr_not_created
#define ERRCODE_TIEMR_NOT_CREATED 0x80001321
ERRCODE_TIMER_INVALID_REG_ADDR
errcode timer invalid reg addr errcode_timer_invalid_reg_addr timer_invalid_reg_addr
#define ERRCODE_TIMER_INVALID_REG_ADDR 0x80001322
ERRCODE_TIMER_INVALID_STATE
errcode timer invalid state errcode_timer_invalid_state timer_invalid_state
#define ERRCODE_TIMER_INVALID_STATE 0x80001323
ERRCODE_TIMER_NOT_INIT
errcode timer not init errcode_timer_not_init timer_not_init
#define ERRCODE_TIMER_NOT_INIT 0x80001324
ERRCODE_TIMER_USING
errcode timer using errcode_timer_using timer_using
#define ERRCODE_TIMER_USING 0x80001325
ERRCODE_TIMER_EN_FAIL
errcode timer en fail errcode_timer_en_fail timer_en_fail
#define ERRCODE_TIMER_EN_FAIL 0x80001326
ERRCODE_SPI_CONFIG_FAIL
errcode spi config fail errcode_spi_config_fail spi_config_fail
#define ERRCODE_SPI_CONFIG_FAIL 0x80001330
ERRCODE_SPI_REG_ADDR_INVALID
errcode spi reg addr invalid errcode_spi_reg_addr_invalid spi_reg_addr_invalid
#define ERRCODE_SPI_REG_ADDR_INVALID 0x80001331
ERRCODE_SPI_MODE_MISMATCH
errcode spi mode mismatch errcode_spi_mode_mismatch spi_mode_mismatch
#define ERRCODE_SPI_MODE_MISMATCH 0x80001332
ERRCODE_SPI_TIMEOUT
errcode spi timeout errcode_spi_timeout spi_timeout
#define ERRCODE_SPI_TIMEOUT 0x80001333
ERRCODE_SPI_RX_FIFO_FULL
errcode spi rx fifo full errcode_spi_rx_fifo_full spi_rx_fifo_full
#define ERRCODE_SPI_RX_FIFO_FULL 0x80001334
ERRCODE_SPI_SLAVE_SELECT_INVALID
errcode spi slave select invalid errcode_spi_slave_select_invalid spi_slave_select_invalid
#define ERRCODE_SPI_SLAVE_SELECT_INVALID 0x80001335
ERRCODE_SPI_DMA_CONFIG_ERROR
errcode spi dma config error errcode_spi_dma_config_error spi_dma_config_error
#define ERRCODE_SPI_DMA_CONFIG_ERROR 0x80001336
ERRCODE_SPI_DMA_TRANSFER_ERROR
errcode spi dma transfer error errcode_spi_dma_transfer_error spi_dma_transfer_error
#define ERRCODE_SPI_DMA_TRANSFER_ERROR 0x80001337
ERRCODE_SPI_INVALID_BYTES
errcode spi invalid bytes errcode_spi_invalid_bytes spi_invalid_bytes
#define ERRCODE_SPI_INVALID_BYTES 0x80001338
ERRCODE_SPI_STATE_MISMATCH
errcode spi state mismatch errcode_spi_state_mismatch spi_state_mismatch
#define ERRCODE_SPI_STATE_MISMATCH 0x8000133A
ERRCODE_SPI_ADD_QUEUE_FAIL
errcode spi add queue fail errcode_spi_add_queue_fail spi_add_queue_fail
#define ERRCODE_SPI_ADD_QUEUE_FAIL 0x8000133B
ERRCODE_SPI_DMA_IRQ_MODE_MUTEX
errcode spi dma irq mode mutex errcode_spi_dma_irq_mode_mutex spi_dma_irq_mode_mutex
#define ERRCODE_SPI_DMA_IRQ_MODE_MUTEX 0x8000133C
ERRCODE_SPI_INVALID_TMODE
errcode spi invalid tmode errcode_spi_invalid_tmode spi_invalid_tmode
#define ERRCODE_SPI_INVALID_TMODE 0x8000133D
ERRCODE_SPI_BUSY
errcode spi busy errcode_spi_busy spi_busy
#define ERRCODE_SPI_BUSY 0x8000133E
ERRCODE_SFC_INVALID_PARAM
errcode sfc invalid param errcode_sfc_invalid_param sfc_invalid_param
#define ERRCODE_SFC_INVALID_PARAM 0x8000133F
ERRCODE_SFC_NOT_INIT
errcode sfc not init errcode_sfc_not_init sfc_not_init
#define ERRCODE_SFC_NOT_INIT 0x80001340
ERRCODE_SFC_FLASH_NOT_SUPPORT
errcode sfc flash not support errcode_sfc_flash_not_support sfc_flash_not_support
#define ERRCODE_SFC_FLASH_NOT_SUPPORT 0x80001341
ERRCODE_SFC_ADDRESS_OVERSTEP
errcode sfc address overstep errcode_sfc_address_overstep sfc_address_overstep
#define ERRCODE_SFC_ADDRESS_OVERSTEP 0x80001342
ERRCODE_SFC_REG_ADDR_INVALID
errcode sfc reg addr invalid errcode_sfc_reg_addr_invalid sfc_reg_addr_invalid
#define ERRCODE_SFC_REG_ADDR_INVALID 0x80001343
ERRCODE_SFC_FLASH_TIMEOUT_WAIT_READY
errcode sfc flash timeout wait ready errcode_sfc_flash_timeout_wait_ready sfc_flash_timeout_wait_ready
#define ERRCODE_SFC_FLASH_TIMEOUT_WAIT_READY 0x80001344
ERRCODE_SFC_CMD_ERROR
errcode sfc cmd error errcode_sfc_cmd_error sfc_cmd_error
#define ERRCODE_SFC_CMD_ERROR 0x80001345
ERRCODE_SFC_CMD_NOT_SUPPORT
errcode sfc cmd not support errcode_sfc_cmd_not_support sfc_cmd_not_support
#define ERRCODE_SFC_CMD_NOT_SUPPORT 0x80001346
errcode sfc erase form error errcode_sfc_erase_form_error sfc_erase_form_error
#define ERRCODE_SFC_ERASE_FORM_ERROR 0x80001347
ERRCODE_SFC_DEFAULT_INIT
errcode sfc default init errcode_sfc_default_init sfc_default_init
#define ERRCODE_SFC_DEFAULT_INIT 0x80001348
ERRCODE_SFC_PORT_INVALID_PARAM
errcode sfc port invalid param errcode_sfc_port_invalid_param sfc_port_invalid_param
#define ERRCODE_SFC_PORT_INVALID_PARAM 0x80001349
ERRCODE_SFC_ALREADY_INIT
errcode sfc already init errcode_sfc_already_init sfc_already_init
#define ERRCODE_SFC_ALREADY_INIT 0x8000134A
ERRCODE_SFC_INVALID_ADDR
errcode sfc invalid addr errcode_sfc_invalid_addr sfc_invalid_addr
#define ERRCODE_SFC_INVALID_ADDR 0x8000134B
ERRCODE_SFC_IN_CONTINUE_READ
errcode sfc in continue read errcode_sfc_in_continue_read sfc_in_continue_read
#define ERRCODE_SFC_IN_CONTINUE_READ 0x8000134C
ERRCODE_SFC_DMA_BUSY
errcode sfc dma busy errcode_sfc_dma_busy sfc_dma_busy
#define ERRCODE_SFC_DMA_BUSY 0x8000133D
ERRCODE_MPU_NOT_INIT
errcode mpu not init errcode_mpu_not_init mpu_not_init
#define ERRCODE_MPU_NOT_INIT 0x80001350
ERRCODE_MPU_INVALID_PARAMETER
errcode mpu invalid parameter errcode_mpu_invalid_parameter mpu_invalid_parameter
#define ERRCODE_MPU_INVALID_PARAMETER 0x80001351
ERRCODE_MPU_CONFIG_FAILED
errcode mpu config failed errcode_mpu_config_failed mpu_config_failed
#define ERRCODE_MPU_CONFIG_FAILED 0x80001352
ERRCODE_MPU_REG_ADDR_INVALID
errcode mpu reg addr invalid errcode_mpu_reg_addr_invalid mpu_reg_addr_invalid
#define ERRCODE_MPU_REG_ADDR_INVALID 0x80001353
ERRCODE_MPU_DREGION_ERROR
errcode mpu dregion error errcode_mpu_dregion_error mpu_dregion_error
#define ERRCODE_MPU_DREGION_ERROR 0x80001354
ERRCODE_MPU_INVALID_ADDR
errcode mpu invalid addr errcode_mpu_invalid_addr mpu_invalid_addr
#define ERRCODE_MPU_INVALID_ADDR 0x80001355
ERRCODE_TSENSOR_NOT_INIT
errcode tsensor not init errcode_tsensor_not_init tsensor_not_init
#define ERRCODE_TSENSOR_NOT_INIT 0x80001360
ERRCODE_TSENSOR_INVALID_PARAMETER
errcode tsensor invalid parameter errcode_tsensor_invalid_parameter tsensor_invalid_parameter
#define ERRCODE_TSENSOR_INVALID_PARAMETER 0x80001361
ERRCODE_TSENSOR_REG_ADDR_INVALID
errcode tsensor reg addr invalid errcode_tsensor_reg_addr_invalid tsensor_reg_addr_invalid
#define ERRCODE_TSENSOR_REG_ADDR_INVALID 0x80001362
ERRCODE_TSENSOR_GET_TEMP_INVALID
errcode tsensor get temp invalid errcode_tsensor_get_temp_invalid tsensor_get_temp_invalid
#define ERRCODE_TSENSOR_GET_TEMP_INVALID 0x80001363
ERRCODE_TSENSOR_WORKMODE_ERROR
errcode tsensor workmode error errcode_tsensor_workmode_error tsensor_workmode_error
#define ERRCODE_TSENSOR_WORKMODE_ERROR 0x80001364
ERRCODE_PSRAM_RET_UNINIT
errcode psram ret uninit errcode_psram_ret_uninit psram_ret_uninit
#define ERRCODE_PSRAM_RET_UNINIT 0x80001370
ERRCODE_PSRAM_RET_INITED
errcode psram ret inited errcode_psram_ret_inited psram_ret_inited
#define ERRCODE_PSRAM_RET_INITED 0x80001371
ERRCODE_PSRAM_RET_TIMEOUT
errcode psram ret timeout errcode_psram_ret_timeout psram_ret_timeout
#define ERRCODE_PSRAM_RET_TIMEOUT 0x80001372
ERRCODE_PSRAM_RET_WRONG_PARA
errcode psram ret wrong para errcode_psram_ret_wrong_para psram_ret_wrong_para
#define ERRCODE_PSRAM_RET_WRONG_PARA 0x80001373
ERRCODE_PSRAM_RET_WRONG_DEVICE
errcode psram ret wrong device errcode_psram_ret_wrong_device psram_ret_wrong_device
#define ERRCODE_PSRAM_RET_WRONG_DEVICE 0x80001374
ERRCODE_PSRAM_RET_XIP_EN
errcode psram ret xip en errcode_psram_ret_xip_en psram_ret_xip_en
#define ERRCODE_PSRAM_RET_XIP_EN 0x80001375
ERRCODE_PSRAM_RET_XIP_DIS
errcode psram ret xip dis errcode_psram_ret_xip_dis psram_ret_xip_dis
#define ERRCODE_PSRAM_RET_XIP_DIS 0x80001376
ERRCODE_PSRAM_RET_SLEEP
errcode psram ret sleep errcode_psram_ret_sleep psram_ret_sleep
#define ERRCODE_PSRAM_RET_SLEEP 0x80001377
ERRCODE_PSRAM_RET_WAKE
errcode psram ret wake errcode_psram_ret_wake psram_ret_wake
#define ERRCODE_PSRAM_RET_WAKE 0x80001378
ERRCODE_PSRAM_RET_ERROR
errcode psram ret error errcode_psram_ret_error psram_ret_error
#define ERRCODE_PSRAM_RET_ERROR 0x80001379
ERRCODE_PDM_REG_ADDR_INVALID
errcode pdm reg addr invalid errcode_pdm_reg_addr_invalid pdm_reg_addr_invalid
#define ERRCODE_PDM_REG_ADDR_INVALID 0x8000137E
ERRCODE_PDM_NOT_INIT
errcode pdm not init errcode_pdm_not_init pdm_not_init
#define ERRCODE_PDM_NOT_INIT 0x8000137F
ERRCODE_EDGE_NOT_INIT
edge_not_init errcode edge not init errcode_edge_not_init
#define ERRCODE_EDGE_NOT_INIT 0x80001380
ERRCODE_EDGE_INVALID_PARAMETER
edge_invalid_parameter errcode edge invalid parameter errcode_edge_invalid_parameter
#define ERRCODE_EDGE_INVALID_PARAMETER 0x80001381
ERRCODE_EDGE_REG_ADDR_INVALID
edge_reg_addr_invalid errcode edge reg addr invalid errcode_edge_reg_addr_invalid
#define ERRCODE_EDGE_REG_ADDR_INVALID 0x80001382
ERRCODE_EFLASH_NOT_INIT
eflash_not_init errcode eflash not init errcode_eflash_not_init
#define ERRCODE_EFLASH_NOT_INIT 0x80001385
ERRCODE_EFLASH_INVALID_PARAMETER
eflash_invalid_parameter errcode eflash invalid parameter errcode_eflash_invalid_parameter
#define ERRCODE_EFLASH_INVALID_PARAMETER 0x80001386
ERRCODE_EFLASH_REG_ADDR_INVALID
eflash_reg_addr_invalid errcode eflash reg addr invalid errcode_eflash_reg_addr_invalid
#define ERRCODE_EFLASH_REG_ADDR_INVALID 0x80001387
ERRCODE_EFUSE_INVALID_PARAM
efuse_invalid_param errcode efuse invalid param errcode_efuse_invalid_param
#define ERRCODE_EFUSE_INVALID_PARAM 0x80001390
ERRCODE_EFUSE_NOT_INIT
efuse_not_init errcode efuse not init errcode_efuse_not_init
#define ERRCODE_EFUSE_NOT_INIT 0x80001391
ERRCODE_EFUSE_REG_ADDR_INVALID
efuse_reg_addr_invalid errcode efuse reg addr invalid errcode_efuse_reg_addr_invalid
#define ERRCODE_EFUSE_REG_ADDR_INVALID 0x80001392
ERRCODE_EFUSE_TIMEOUT_WAIT_READY
efuse_timeout_wait_ready errcode efuse timeout wait ready errcode_efuse_timeout_wait_ready
#define ERRCODE_EFUSE_TIMEOUT_WAIT_READY 0x80001393
ERRCODE_EFUSE_ITEM_LEN_ERROR
efuse_item_len_error errcode efuse item len error errcode_efuse_item_len_error
#define ERRCODE_EFUSE_ITEM_LEN_ERROR 0x80001394
ERRCODE_EFUSE_ITEM_ID_ERROR
efuse_item_id_error errcode efuse item id error errcode_efuse_item_id_error
#define ERRCODE_EFUSE_ITEM_ID_ERROR 0x80001395
ERRCODE_EFUSE_ITEM_NOT_WRITEABLE
efuse_item_not_writeable errcode efuse item not writeable errcode_efuse_item_not_writeable
#define ERRCODE_EFUSE_ITEM_NOT_WRITEABLE 0x80001396
ERRCODE_EFUSE_READ_FAIL
efuse_read_fail errcode efuse read fail errcode_efuse_read_fail
#define ERRCODE_EFUSE_READ_FAIL 0x80001397
ERRCODE_EFUSE_WRITE_FAIL
efuse_write_fail errcode efuse write fail errcode_efuse_write_fail
#define ERRCODE_EFUSE_WRITE_FAIL 0x80001398
ERRCODE_EFUSE_WRITE_FORBIDDEN
efuse_write_forbidden errcode efuse write forbidden errcode_efuse_write_forbidden
#define ERRCODE_EFUSE_WRITE_FORBIDDEN 0x80001399
ERRCODE_MEM_MONITOR_INVALID_PARAMETER
errcode mem monitor invalid parameter errcode_mem_monitor_invalid_parameter mem_monitor_invalid_parameter
#define ERRCODE_MEM_MONITOR_INVALID_PARAMETER 0x80001400
ERRCODE_MEM_MONITOR_REG_ADDR_INVALID
errcode mem monitor reg addr invalid errcode_mem_monitor_reg_addr_invalid mem_monitor_reg_addr_invalid
#define ERRCODE_MEM_MONITOR_REG_ADDR_INVALID 0x80001401
ERRCODE_MEM_MONITOR_WORKMODE_ERROR
errcode mem monitor workmode error errcode_mem_monitor_workmode_error mem_monitor_workmode_error
#define ERRCODE_MEM_MONITOR_WORKMODE_ERROR 0x80001402
ERRCODE_MEM_MONITOR_GET_TEMP_INVALID
errcode mem monitor get temp invalid errcode_mem_monitor_get_temp_invalid mem_monitor_get_temp_invalid
#define ERRCODE_MEM_MONITOR_GET_TEMP_INVALID 0x80001403
ERRCODE_RTC_NOT_INITED
errcode rtc not inited errcode_rtc_not_inited rtc_not_inited
#define ERRCODE_RTC_NOT_INITED 0x80001405
ERRCODE_RTC_REG_ADDR_INVALID
errcode rtc reg addr invalid errcode_rtc_reg_addr_invalid rtc_reg_addr_invalid
#define ERRCODE_RTC_REG_ADDR_INVALID 0x80001406
ERRCODE_RTC_NO_ENOUGH
errcode rtc no enough errcode_rtc_no_enough rtc_no_enough
#define ERRCODE_RTC_NO_ENOUGH 0x80001407
ERRCODE_RTC_NOT_CREATED
errcode rtc not created errcode_rtc_not_created rtc_not_created
#define ERRCODE_RTC_NOT_CREATED 0x80001408
ERRCOED_RTC_EN_FAIL
#define ERRCOED_RTC_EN_FAIL 0x80001409
ERRCODE_I2S_NOT_INIT
errcode i2s not init errcode_i2s_not_init i2s_not_init
#define ERRCODE_I2S_NOT_INIT 0x80001410
ERRCODE_I2S_NOT_CONFIG
errcode i2s not config errcode_i2s_not_config i2s_not_config
#define ERRCODE_I2S_NOT_CONFIG 0x80001411
ERRCODE_PCM_NOT_INIT
errcode pcm not init errcode_pcm_not_init pcm_not_init
#define ERRCODE_PCM_NOT_INIT 0x80001412
ERRCODE_PCM_NOT_CONFIG
errcode pcm not config errcode_pcm_not_config pcm_not_config
#define ERRCODE_PCM_NOT_CONFIG 0x80001413
ERRCODE_SIO_REG_ADDR_INVALID
errcode sio reg addr invalid errcode_sio_reg_addr_invalid sio_reg_addr_invalid
#define ERRCODE_SIO_REG_ADDR_INVALID 0x80001414
ERRCODE_CAN_FD_INITED
can_fd_inited errcode can fd inited errcode_can_fd_inited
#define ERRCODE_CAN_FD_INITED 0x80001420
ERRCODE_CAN_FD_INVALID_ADDR
can_fd_invalid_addr errcode can fd invalid addr errcode_can_fd_invalid_addr
#define ERRCODE_CAN_FD_INVALID_ADDR 0x80001421
ERRCODE_CAN_FD_NOT_INIT
can_fd_not_init errcode can fd not init errcode_can_fd_not_init
#define ERRCODE_CAN_FD_NOT_INIT 0x80001422
ERRCODE_CAN_FD_SEND_TIMEOUT
can_fd_send_timeout errcode can fd send timeout errcode_can_fd_send_timeout
#define ERRCODE_CAN_FD_SEND_TIMEOUT 0x80001423
ERRCODE_CAN_FD_RX_FIFO_EMPTY
can_fd_rx_fifo_empty errcode can fd rx fifo empty errcode_can_fd_rx_fifo_empty
#define ERRCODE_CAN_FD_RX_FIFO_EMPTY 0x80001424
ERRCODE_CAN_ACTIVE_STS
can_active_sts errcode can active sts errcode_can_active_sts
#define ERRCODE_CAN_ACTIVE_STS 0x80001425
ERRCODE_CAN_PASSIVE_STS
can_passive_sts errcode can passive sts errcode_can_passive_sts
#define ERRCODE_CAN_PASSIVE_STS 0x80001426
ERRCODE_CAN_BUS_OFF
can_bus_off errcode can bus off errcode_can_bus_off
#define ERRCODE_CAN_BUS_OFF 0x80001427
ERRCODE_CAN_ERROR_PARAM_POINTER
can_error_param_pointer errcode can error param pointer errcode_can_error_param_pointer
#define ERRCODE_CAN_ERROR_PARAM_POINTER 0x80001428
ERRCODE_CAN_ERROR_PARAM_CONTROLLER
can_error_param_controller errcode can error param controller errcode_can_error_param_controller
#define ERRCODE_CAN_ERROR_PARAM_CONTROLLER 0x80001429
ERRCODE_CAN_ERROR_TRANSITION
can_error_transition errcode can error transition errcode_can_error_transition
#define ERRCODE_CAN_ERROR_TRANSITION 0x80001430
ERRCODE_CAN_ERROR_UNINIT
can_error_uninit errcode can error uninit errcode_can_error_uninit
#define ERRCODE_CAN_ERROR_UNINIT 0x80001431
ERRCODE_CAN_ERROR_SET_CONTROLLER_MODE
can_error_set_controller_mode errcode can error set controller mode errcode_can_error_set_controller_mode
#define ERRCODE_CAN_ERROR_SET_CONTROLLER_MODE 0x80001432
ERRCODE_CAN_ERROR_DATA_LENGTH
can_error_data_length errcode can error data length errcode_can_error_data_length
#define ERRCODE_CAN_ERROR_DATA_LENGTH 0x80001433
ERRCODE_CAN_BUSY
can_busy errcode can busy errcode_can_busy
#define ERRCODE_CAN_BUSY 0x80001434
ERRCODE_CAN_ERROR_PARAM_FILTER
can_error_param_filter errcode can error param filter errcode_can_error_param_filter
#define ERRCODE_CAN_ERROR_PARAM_FILTER 0x80001435
ERRCODE_CAN_INIT_TIMEOUT
can_init_timeout errcode can init timeout errcode_can_init_timeout
#define ERRCODE_CAN_INIT_TIMEOUT 0x80001436
ERRCODE_SECURITY_INVALID_PARAM
errcode security invalid param errcode_security_invalid_param security_invalid_param
#define ERRCODE_SECURITY_INVALID_PARAM 0x80001501
ERRCODE_SECURITY_PARAM_IS_NULL
errcode security param is null errcode_security_param_is_null security_param_is_null
#define ERRCODE_SECURITY_PARAM_IS_NULL 0x80001502
ERRCODE_SECURITY_NOT_INIT
errcode security not init errcode_security_not_init security_not_init
#define ERRCODE_SECURITY_NOT_INIT 0x80001503
ERRCODE_SECURITY_UNSUPPORT
errcode security unsupport errcode_security_unsupport security_unsupport
#define ERRCODE_SECURITY_UNSUPPORT 0x80001504
ERRCODE_SECURITY_UNEXPECTED
errcode security unexpected errcode_security_unexpected security_unexpected
#define ERRCODE_SECURITY_UNEXPECTED 0x80001505
ERRCODE_SECURITY_TRY_TIMES
errcode security try times errcode_security_try_times security_try_times
#define ERRCODE_SECURITY_TRY_TIMES 0x80001506
ERRCODE_SECURITY_CHN_BUSY
errcode security chn busy errcode_security_chn_busy security_chn_busy
#define ERRCODE_SECURITY_CHN_BUSY 0x80001507
ERRCODE_SECURITY_CTX_CLOSED
errcode security ctx closed errcode_security_ctx_closed security_ctx_closed
#define ERRCODE_SECURITY_CTX_CLOSED 0x80001508
ERRCODE_SECURITY_NOT_SET_CONFIG
errcode security not set config errcode_security_not_set_config security_not_set_config
#define ERRCODE_SECURITY_NOT_SET_CONFIG 0x80001509
ERRCODE_SECURITY_NOT_ATTACHED
errcode security not attached errcode_security_not_attached security_not_attached
#define ERRCODE_SECURITY_NOT_ATTACHED 0x8000150A
ERRCODE_SECURITY_NOT_SET_SESSION_KEY
errcode security not set session key errcode_security_not_set_session_key security_not_set_session_key
#define ERRCODE_SECURITY_NOT_SET_SESSION_KEY 0x8000150B
ERRCODE_SECURITY_NOT_MAC_START
errcode security not mac start errcode_security_not_mac_start security_not_mac_start
#define ERRCODE_SECURITY_NOT_MAC_START 0x8000150C
ERRCODE_SECURITY_INVALID_HANDLE
errcode security invalid handle errcode_security_invalid_handle security_invalid_handle
#define ERRCODE_SECURITY_INVALID_HANDLE 0x8000150D
ERRCODE_SECURITY_GET_PHYS_ADDR
errcode security get phys addr errcode_security_get_phys_addr security_get_phys_addr
#define ERRCODE_SECURITY_GET_PHYS_ADDR 0x8000150E
ERRCODE_SECURITY_SYMC_LEN_NOT_ALIGNED
errcode security symc len not aligned errcode_security_symc_len_not_aligned security_symc_len_not_aligned
#define ERRCODE_SECURITY_SYMC_LEN_NOT_ALIGNED 0x8000150F
ERRCODE_SECURITY_SYMC_ADDR_NOT_ALIGNED
errcode security symc addr not aligned errcode_security_symc_addr_not_aligned security_symc_addr_not_aligned
#define ERRCODE_SECURITY_SYMC_ADDR_NOT_ALIGNED 0x80001510
ERRCODE_SECURITY_PKE_RSA_SAME_DATA
errcode security pke rsa same data errcode_security_pke_rsa_same_data security_pke_rsa_same_data
#define ERRCODE_SECURITY_PKE_RSA_SAME_DATA 0x80001511
ERRCODE_SECURITY_PKE_RSA_CRYPTO_V15_CHECK
errcode security pke rsa crypto v15 check errcode_security_pke_rsa_crypto_v15_check security_pke_rsa_crypto_v15_check
#define ERRCODE_SECURITY_PKE_RSA_CRYPTO_V15_CHECK 0x80001512
ERRCODE_SECURITY_PKE_RSA_CRYPTO_OAEP_CHECK
errcode security pke rsa crypto oaep check errcode_security_pke_rsa_crypto_oaep_check security_pke_rsa_crypto_oaep_check
#define ERRCODE_SECURITY_PKE_RSA_CRYPTO_OAEP_CHECK 0x80001513
ERRCODE_SECURITY_PKE_RSA_VERIFY_V15_CHECK
errcode security pke rsa verify v15 check errcode_security_pke_rsa_verify_v15_check security_pke_rsa_verify_v15_check
#define ERRCODE_SECURITY_PKE_RSA_VERIFY_V15_CHECK 0x80001514
ERRCODE_SECURITY_PKE_RSA_VERIFY_PSS_CHECK
errcode security pke rsa verify pss check errcode_security_pke_rsa_verify_pss_check security_pke_rsa_verify_pss_check
#define ERRCODE_SECURITY_PKE_RSA_VERIFY_PSS_CHECK 0x80001515
ERRCODE_SECURITY_PKE_RSA_GEN_KEY
errcode security pke rsa gen key errcode_security_pke_rsa_gen_key security_pke_rsa_gen_key
#define ERRCODE_SECURITY_PKE_RSA_GEN_KEY 0x80001516
ERRCODE_SECURITY_PKE_SM2_DECRYPT
errcode security pke sm2 decrypt errcode_security_pke_sm2_decrypt security_pke_sm2_decrypt
#define ERRCODE_SECURITY_PKE_SM2_DECRYPT 0x80001517
ERRCODE_SECURITY_ECDSA_SIGN_R_IS_ZERO
errcode security ecdsa sign r is zero errcode_security_ecdsa_sign_r_is_zero security_ecdsa_sign_r_is_zero
#define ERRCODE_SECURITY_ECDSA_SIGN_R_IS_ZERO 0x80001518
ERRCODE_SECURITY_ECDSA_SIGN_S_IS_ZERO
errcode security ecdsa sign s is zero errcode_security_ecdsa_sign_s_is_zero security_ecdsa_sign_s_is_zero
#define ERRCODE_SECURITY_ECDSA_SIGN_S_IS_ZERO 0x80001519
ERRCODE_SECURITY_PKE_ECDSA_VERIFY_CHECK
errcode security pke ecdsa verify check errcode_security_pke_ecdsa_verify_check security_pke_ecdsa_verify_check
#define ERRCODE_SECURITY_PKE_ECDSA_VERIFY_CHECK 0x8000151A
ERRCODE_SECURITY_OTP_ADDR_NOT_ALIGNED
errcode security otp addr not aligned errcode_security_otp_addr_not_aligned security_otp_addr_not_aligned
#define ERRCODE_SECURITY_OTP_ADDR_NOT_ALIGNED 0x8000151B
ERRCODE_SECURITY_HASH_ADDR_NOT_ALIGNED
errcode security hash addr not aligned errcode_security_hash_addr_not_aligned security_hash_addr_not_aligned
#define ERRCODE_SECURITY_HASH_ADDR_NOT_ALIGNED 0x8000151C
ERRCODE_SECURITY_HASH_LEN_NOT_ALIGNED
errcode security hash len not aligned errcode_security_hash_len_not_aligned security_hash_len_not_aligned
#define ERRCODE_SECURITY_HASH_LEN_NOT_ALIGNED 0x8000151D
ERRCODE_SECURITY_PKE_SECURITY_STRENGTH_NOT_MATCH
errcode security pke security strength not match errcode_security_pke_security_strength_not_match security_pke_security_strength_not_match
#define ERRCODE_SECURITY_PKE_SECURITY_STRENGTH_NOT_MATCH 0x8000151E
ERRCODE_SECURITY_PKE_RSA_CRYPTO_BUFFER_TOO_SMALL
errcode security pke rsa crypto buffer too small errcode_security_pke_rsa_crypto_buffer_too_small security_pke_rsa_crypto_buffer_too_small
#define ERRCODE_SECURITY_PKE_RSA_CRYPTO_BUFFER_TOO_SMALL 0x80001520
ERRCODE_SECURITY_SYMC_AEAD_TAG_INVALID
errcode security symc aead tag invalid errcode_security_symc_aead_tag_invalid security_symc_aead_tag_invalid
#define ERRCODE_SECURITY_SYMC_AEAD_TAG_INVALID 0x80001521
ERRCODE_SECURITY_INVALID_RSA_MODULAR
errcode security invalid rsa modular errcode_security_invalid_rsa_modular security_invalid_rsa_modular
#define ERRCODE_SECURITY_INVALID_RSA_MODULAR 0x80001522
ERRCODE_SECURITY_MEMCPY_S
errcode security memcpy s errcode_security_memcpy_s security_memcpy_s
#define ERRCODE_SECURITY_MEMCPY_S 0x80001540
ERRCODE_SECURITY_MALLOC
errcode security malloc errcode_security_malloc security_malloc
#define ERRCODE_SECURITY_MALLOC 0x80001541
ERRCODE_SECURITY_MUTEX_INIT
errcode security mutex init errcode_security_mutex_init security_mutex_init
#define ERRCODE_SECURITY_MUTEX_INIT 0x80001542
ERRCODE_SECURITY_MUTEX_LOCK
errcode security mutex lock errcode_security_mutex_lock security_mutex_lock
#define ERRCODE_SECURITY_MUTEX_LOCK 0x80001543
ERRCODE_SECURITY_MEMSET_S
errcode security memset s errcode_security_memset_s security_memset_s
#define ERRCODE_SECURITY_MEMSET_S 0x80001544
ERRCODE_SECURITY_DEV_OPEN_FAILED
errcode security dev open failed errcode_security_dev_open_failed security_dev_open_failed
#define ERRCODE_SECURITY_DEV_OPEN_FAILED 0x80001560
ERRCODE_SECURITY_COUNT_OVERFLOW
errcode security count overflow errcode_security_count_overflow security_count_overflow
#define ERRCODE_SECURITY_COUNT_OVERFLOW 0x80001561
ERRCODE_SECURITY_CMD_DISMATCH
errcode security cmd dismatch errcode_security_cmd_dismatch security_cmd_dismatch
#define ERRCODE_SECURITY_CMD_DISMATCH 0x80001570
ERRCODE_SECURITY_COPY_FROM_USER
errcode security copy from user errcode_security_copy_from_user security_copy_from_user
#define ERRCODE_SECURITY_COPY_FROM_USER 0x80001571
ERRCODE_SECURITY_COPY_TO_USER
errcode security copy to user errcode_security_copy_to_user security_copy_to_user
#define ERRCODE_SECURITY_COPY_TO_USER 0x80001572
ERRCODE_SECURITY_MEM_HANDLE_GET
errcode security mem handle get errcode_security_mem_handle_get security_mem_handle_get
#define ERRCODE_SECURITY_MEM_HANDLE_GET 0x80001573
ERRCODE_SECURITY_GET_OWNER
errcode security get owner errcode_security_get_owner security_get_owner
#define ERRCODE_SECURITY_GET_OWNER 0x80001574
ERRCODE_SECURITY_PROCESS_NOT_INIT
errcode security process not init errcode_security_process_not_init security_process_not_init
#define ERRCODE_SECURITY_PROCESS_NOT_INIT 0x80001580
ERRCODE_SECURITY_MAX_PROCESS
errcode security max process errcode_security_max_process security_max_process
#define ERRCODE_SECURITY_MAX_PROCESS 0x80001581
ERRCODE_SECURITY_MEMORY_ACCESS
errcode security memory access errcode_security_memory_access security_memory_access
#define ERRCODE_SECURITY_MEMORY_ACCESS 0x80001582
ERRCODE_SECURITY_INVALID_PROCESS
errcode security invalid process errcode_security_invalid_process security_invalid_process
#define ERRCODE_SECURITY_INVALID_PROCESS 0x80001583
ERRCODE_SECURITY_HASH_LOGIC
errcode security hash logic errcode_security_hash_logic security_hash_logic
#define ERRCODE_SECURITY_HASH_LOGIC 0x800015A0
ERRCODE_SECURITY_PKE_LOGIC
errcode security pke logic errcode_security_pke_logic security_pke_logic
#define ERRCODE_SECURITY_PKE_LOGIC 0x800015A1
ERRCODE_SECURITY_INVALID_CPU_TYPE
errcode security invalid cpu type errcode_security_invalid_cpu_type security_invalid_cpu_type
#define ERRCODE_SECURITY_INVALID_CPU_TYPE 0x800015A2
ERRCODE_SECURITY_INVALID_REGISTER_VALUE
errcode security invalid register value errcode_security_invalid_register_value security_invalid_register_value
#define ERRCODE_SECURITY_INVALID_REGISTER_VALUE 0x800015A3
ERRCODE_SECURITY_INVALID_PHYS_ADDR
errcode security invalid phys addr errcode_security_invalid_phys_addr security_invalid_phys_addr
#define ERRCODE_SECURITY_INVALID_PHYS_ADDR 0x800015A4
ERRCODE_SECURITY_OTP_PERMISSION
errcode security otp permission errcode_security_otp_permission security_otp_permission
#define ERRCODE_SECURITY_OTP_PERMISSION 0x800015A5
ERRCODE_SECURITY_KM_LOGIC
errcode security km logic errcode_security_km_logic security_km_logic
#define ERRCODE_SECURITY_KM_LOGIC 0x800015A6
ERRCODE_SECURITY_KM_KL_LOGIC
errcode security km kl logic errcode_security_km_kl_logic security_km_kl_logic
#define ERRCODE_SECURITY_KM_KL_LOGIC 0x800015A7
ERRCODE_SECURITY_KM_KC_LOGIC
errcode security km kc logic errcode_security_km_kc_logic security_km_kc_logic
#define ERRCODE_SECURITY_KM_KC_LOGIC 0x800015A8
ERRCODE_SECURITY_KLAD_ROOTKEY_NOT_READY
errcode security klad rootkey not ready errcode_security_klad_rootkey_not_ready security_klad_rootkey_not_ready
#define ERRCODE_SECURITY_KLAD_ROOTKEY_NOT_READY 0x800015A9
ERRCODE_SECURITY_KM_RKP_LOGIC
errcode security km rkp logic errcode_security_km_rkp_logic security_km_rkp_logic
#define ERRCODE_SECURITY_KM_RKP_LOGIC 0x800015AA
ERRCODE_SECURITY_NO_CLOCK
errcode security no clock errcode_security_no_clock security_no_clock
#define ERRCODE_SECURITY_NO_CLOCK 0x800015AB
ERRCODE_SECURITY_GET_TRNG_TIMEOUT
errcode security get trng timeout errcode_security_get_trng_timeout security_get_trng_timeout
#define ERRCODE_SECURITY_GET_TRNG_TIMEOUT 0x800015B0
ERRCODE_SECURITY_HASH_CLEAR_CHN_TIMEOUT
errcode security hash clear chn timeout errcode_security_hash_clear_chn_timeout security_hash_clear_chn_timeout
#define ERRCODE_SECURITY_HASH_CLEAR_CHN_TIMEOUT 0x800015B1
ERRCODE_SECURITY_HASH_CALC_TIMEOUT
errcode security hash calc timeout errcode_security_hash_calc_timeout security_hash_calc_timeout
#define ERRCODE_SECURITY_HASH_CALC_TIMEOUT 0x800015B2
ERRCODE_SECURITY_SYMC_CLEAR_CHN_TIMEOUT
errcode security symc clear chn timeout errcode_security_symc_clear_chn_timeout security_symc_clear_chn_timeout
#define ERRCODE_SECURITY_SYMC_CLEAR_CHN_TIMEOUT 0x800015B3
ERRCODE_SECURITY_SYMC_CALC_TIMEOUT
errcode security symc calc timeout errcode_security_symc_calc_timeout security_symc_calc_timeout
#define ERRCODE_SECURITY_SYMC_CALC_TIMEOUT 0x800015B4
ERRCODE_SECURITY_SYMC_GET_TAG_TIMEOUT
errcode security symc get tag timeout errcode_security_symc_get_tag_timeout security_symc_get_tag_timeout
#define ERRCODE_SECURITY_SYMC_GET_TAG_TIMEOUT 0x800015B5
ERRCODE_SECURITY_PKE_LOCK_TIMEOUT
errcode security pke lock timeout errcode_security_pke_lock_timeout security_pke_lock_timeout
#define ERRCODE_SECURITY_PKE_LOCK_TIMEOUT 0x800015B6
ERRCODE_SECURITY_PKE_WAIT_DONE_TIMEOUT
errcode security pke wait done timeout errcode_security_pke_wait_done_timeout security_pke_wait_done_timeout
#define ERRCODE_SECURITY_PKE_WAIT_DONE_TIMEOUT 0x800015B7
ERRCODE_SECURITY_PKE_ROBUST_WARNING
errcode security pke robust warning errcode_security_pke_robust_warning security_pke_robust_warning
#define ERRCODE_SECURITY_PKE_ROBUST_WARNING 0x800015B8
ERRCODE_SECURITY_RKP_LOCK_TIMEOUT
errcode security rkp lock timeout errcode_security_rkp_lock_timeout security_rkp_lock_timeout
#define ERRCODE_SECURITY_RKP_LOCK_TIMEOUT 0x800015B9
ERRCODE_SECURITY_RKP_CALC_TIMEOUT
errcode security rkp calc timeout errcode_security_rkp_calc_timeout security_rkp_calc_timeout
#define ERRCODE_SECURITY_RKP_CALC_TIMEOUT 0x800015BA
ERRCODE_SECURITY_KLAD_COM_ROUTE_TIMEOUT
errcode security klad com route timeout errcode_security_klad_com_route_timeout security_klad_com_route_timeout
#define ERRCODE_SECURITY_KLAD_COM_ROUTE_TIMEOUT 0x800015BB
ERRCODE_SECURITY_OTP_TIMEOUT
errcode security otp timeout errcode_security_otp_timeout security_otp_timeout
#define ERRCODE_SECURITY_OTP_TIMEOUT 0x800015BC
ERRCODE_SECURITY_KEYSLOT_TIMEOUT
errcode security keyslot timeout errcode_security_keyslot_timeout security_keyslot_timeout
#define ERRCODE_SECURITY_KEYSLOT_TIMEOUT 0x800015BD
ERRCODE_SECURITY_KEYSLOT_LOCK
errcode security keyslot lock errcode_security_keyslot_lock security_keyslot_lock
#define ERRCODE_SECURITY_KEYSLOT_LOCK 0x800015BE
ERRCODE_SECURITY_KLAD_TIMEOUT
errcode security klad timeout errcode_security_klad_timeout security_klad_timeout
#define ERRCODE_SECURITY_KLAD_TIMEOUT 0x800015BF
ERRCODE_SECURITY_KLAD_LOCK
errcode security klad lock errcode_security_klad_lock security_klad_lock
#define ERRCODE_SECURITY_KLAD_LOCK 0x800015C0
ERRCODE_SECURITY_HASH_LOCK_TIMEOUT
errcode security hash lock timeout errcode_security_hash_lock_timeout security_hash_lock_timeout
#define ERRCODE_SECURITY_HASH_LOCK_TIMEOUT 0x800015C1
ERRCODE_SECURITY_PKE_ALG_TIMEOUT
errcode security pke alg timeout errcode_security_pke_alg_timeout security_pke_alg_timeout
#define ERRCODE_SECURITY_PKE_ALG_TIMEOUT 0x800015C2
ERRCODE_SEMA_INVALID_INDEX
errcode sema invalid index errcode_sema_invalid_index sema_invalid_index
#define ERRCODE_SEMA_INVALID_INDEX 0x80001D00
ERRCODE_SEMA_REG_ADDR_INVALID
errcode sema reg addr invalid errcode_sema_reg_addr_invalid sema_reg_addr_invalid
#define ERRCODE_SEMA_REG_ADDR_INVALID 0x80001D01
ERRCODE_MIPI_RFFE_REG_ADDR_INVALID
errcode mipi rffe reg addr invalid errcode_mipi_rffe_reg_addr_invalid mipi_rffe_reg_addr_invalid
#define ERRCODE_MIPI_RFFE_REG_ADDR_INVALID 0x80001600
ERRCODE_MIPI_RFFE_TIMEOUT
errcode mipi rffe timeout errcode_mipi_rffe_timeout mipi_rffe_timeout
#define ERRCODE_MIPI_RFFE_TIMEOUT 0x80001601
ERRCODE_MIPI_RFFE_CMD_PARAM_ERROR
errcode mipi rffe cmd param error errcode_mipi_rffe_cmd_param_error mipi_rffe_cmd_param_error
#define ERRCODE_MIPI_RFFE_CMD_PARAM_ERROR 0x80001602
ERRCODE_MIPI_RFFE_OPCODE_PARAM_ERROR
errcode mipi rffe opcode param error errcode_mipi_rffe_opcode_param_error mipi_rffe_opcode_param_error
#define ERRCODE_MIPI_RFFE_OPCODE_PARAM_ERROR 0x80001603
ERRCODE_MIPI_RFFE_NOT_INIT
errcode mipi rffe not init errcode_mipi_rffe_not_init mipi_rffe_not_init
#define ERRCODE_MIPI_RFFE_NOT_INIT 0x80001604
ERRCODE_CAPSENSOR_NOT_INIT
capsensor_not_init errcode capsensor not init errcode_capsensor_not_init
#define ERRCODE_CAPSENSOR_NOT_INIT 0x80001620
ERRCODE_CAPSENSOR_NOT_ENABLE_SELF_CALI
capsensor_not_enable_self_cali errcode capsensor not enable self cali errcode_capsensor_not_enable_self_cali
#define ERRCODE_CAPSENSOR_NOT_ENABLE_SELF_CALI 0x80001621
ERRCODE_CAPSENSOR_SELF_CALI_TIMEOUT
capsensor_self_cali_timeout errcode capsensor self cali timeout errcode_capsensor_self_cali_timeout
#define ERRCODE_CAPSENSOR_SELF_CALI_TIMEOUT 0x80001622
ERRCODE_CAPSENSOR_MAN_CALI_TIMEOUT
capsensor_man_cali_timeout errcode capsensor man cali timeout errcode_capsensor_man_cali_timeout
#define ERRCODE_CAPSENSOR_MAN_CALI_TIMEOUT 0x80001623
ERRCODE_CAPSENSOR_TIMEOUT
capsensor_timeout errcode capsensor timeout errcode_capsensor_timeout
#define ERRCODE_CAPSENSOR_TIMEOUT 0x80001624
ERRCODE_CAPSENSOR_DATA_REFRESH
capsensor_data_refresh errcode capsensor data refresh errcode_capsensor_data_refresh
#define ERRCODE_CAPSENSOR_DATA_REFRESH 0x80001625
ERRCODE_LPB_INVALID_PARAM
errcode lpb invalid param errcode_lpb_invalid_param lpb_invalid_param
#define ERRCODE_LPB_INVALID_PARAM 0x80001630
ERRCODE_LPB_NOT_INIT
errcode lpb not init errcode_lpb_not_init lpb_not_init
#define ERRCODE_LPB_NOT_INIT 0x80001631
ERRCODE_LPB_CH_MONITED
errcode lpb ch monited errcode_lpb_ch_monited lpb_ch_monited
#define ERRCODE_LPB_CH_MONITED 0x80001632
ERRCODE_LPB_CH_IS_NOT_MONITED
errcode lpb ch is not monited errcode_lpb_ch_is_not_monited lpb_ch_is_not_monited
#define ERRCODE_LPB_CH_IS_NOT_MONITED 0x80001633
ERRCODE_LPB_FUNC_CFG_SAME
errcode lpb func cfg same errcode_lpb_func_cfg_same lpb_func_cfg_same
#define ERRCODE_LPB_FUNC_CFG_SAME 0x80001634
ERRCODE_LPB_CH_ALL_BUSY
errcode lpb ch all busy errcode_lpb_ch_all_busy lpb_ch_all_busy
#define ERRCODE_LPB_CH_ALL_BUSY 0x80001635
ERRCODE_LPB_FUNC_NOT_CFG
errcode lpb func not cfg errcode_lpb_func_not_cfg lpb_func_not_cfg
#define ERRCODE_LPB_FUNC_NOT_CFG 0x80001636
ERRCODE_LPB_PERIPHERAL_NOT_INIT
errcode lpb peripheral not init errcode_lpb_peripheral_not_init lpb_peripheral_not_init
#define ERRCODE_LPB_PERIPHERAL_NOT_INIT 0x80001637
ERRCODE_LPB_PERIPHERAL_INVALID_PARAM
errcode lpb peripheral invalid param errcode_lpb_peripheral_invalid_param lpb_peripheral_invalid_param
#define ERRCODE_LPB_PERIPHERAL_INVALID_PARAM 0x80001638
ERRCODE_LPB_PERIPHERAL_CH_ALL_BUSY
errcode lpb peripheral ch all busy errcode_lpb_peripheral_ch_all_busy lpb_peripheral_ch_all_busy
#define ERRCODE_LPB_PERIPHERAL_CH_ALL_BUSY 0x80001639
ERRCODE_LPB_PERIPHERAL_GPIO_CFG_SAME
errcode lpb peripheral gpio cfg same errcode_lpb_peripheral_gpio_cfg_same lpb_peripheral_gpio_cfg_same
#define ERRCODE_LPB_PERIPHERAL_GPIO_CFG_SAME 0x8000163A
ERRCODE_LPB_PERIPHERAL_PWM_GRP_SAME
errcode lpb peripheral pwm grp same errcode_lpb_peripheral_pwm_grp_same lpb_peripheral_pwm_grp_same
#define ERRCODE_LPB_PERIPHERAL_PWM_GRP_SAME 0x8000163B
ERRCODE_LPB_PERIPHERAL_GPIOCTRL_CONFLICT
errcode lpb peripheral gpioctrl conflict errcode_lpb_peripheral_gpioctrl_conflict lpb_peripheral_gpioctrl_conflict
#define ERRCODE_LPB_PERIPHERAL_GPIOCTRL_CONFLICT 0x8000163C
ERRCODE_I3C_NOT_INIT
errcode i3c not init errcode_i3c_not_init i3c_not_init
#define ERRCODE_I3C_NOT_INIT 0x80001640
ERRCODE_I3C_INITED
errcode i3c inited errcode_i3c_inited i3c_inited
#define ERRCODE_I3C_INITED 0x80001641
ERRCODE_I3C_INVALID_PARAMETER
errcode i3c invalid parameter errcode_i3c_invalid_parameter i3c_invalid_parameter
#define ERRCODE_I3C_INVALID_PARAMETER 0x80001642
ERRCODE_I3C_RX_DATA_GET_FAILED
errcode i3c rx data get failed errcode_i3c_rx_data_get_failed i3c_rx_data_get_failed
#define ERRCODE_I3C_RX_DATA_GET_FAILED 0x80001643
ERRCODE_I3C_REG_ADDR_INVALID
errcode i3c reg addr invalid errcode_i3c_reg_addr_invalid i3c_reg_addr_invalid
#define ERRCODE_I3C_REG_ADDR_INVALID 0x80001644
ERRCODE_I3C_LP_REG_ADDR_INVALID
errcode i3c lp reg addr invalid errcode_i3c_lp_reg_addr_invalid i3c_lp_reg_addr_invalid
#define ERRCODE_I3C_LP_REG_ADDR_INVALID 0x80001645
ERRCODE_I3C_CMD_TABLE_ADDR_INVALID
errcode i3c cmd table addr invalid errcode_i3c_cmd_table_addr_invalid i3c_cmd_table_addr_invalid
#define ERRCODE_I3C_CMD_TABLE_ADDR_INVALID 0x80001646
ERRCODE_I3C_CMD_TABLE_ADDR_ALIGN_ERROR
errcode i3c cmd table addr align error errcode_i3c_cmd_table_addr_align_error i3c_cmd_table_addr_align_error
#define ERRCODE_I3C_CMD_TABLE_ADDR_ALIGN_ERROR 0x80001647
ERRCODE_SH_PLAT_CUST_DISABLE
errcode sh plat cust disable errcode_sh_plat_cust_disable sh_plat_cust_disable
#define ERRCODE_SH_PLAT_CUST_DISABLE 0x80001648
ERRCODE_SH_INVALID_PARAMETER
errcode sh invalid parameter errcode_sh_invalid_parameter sh_invalid_parameter
#define ERRCODE_SH_INVALID_PARAMETER 0x80001649
ERRCODE_SH_LENGTH_ERROR
errcode sh length error errcode_sh_length_error sh_length_error
#define ERRCODE_SH_LENGTH_ERROR 0x8000164A
errcode sh invalid header errcode_sh_invalid_header sh_invalid_header
#define ERRCODE_SH_INVALID_HEADER 0x8000164B
ERRCODE_LIN_INITED
errcode lin inited errcode_lin_inited lin_inited
#define ERRCODE_LIN_INITED 0x80001650
ERRCODE_LIN_NOT_INIT
errcode lin not init errcode_lin_not_init lin_not_init
#define ERRCODE_LIN_NOT_INIT 0x80001651
ERRCODE_LIN_WAIT_IDLE_FAIL
errcode lin wait idle fail errcode_lin_wait_idle_fail lin_wait_idle_fail
#define ERRCODE_LIN_WAIT_IDLE_FAIL 0x80001652
ERRCODE_LIN_NOT_SUPPORT_WAKEUP
errcode lin not support wakeup errcode_lin_not_support_wakeup lin_not_support_wakeup
#define ERRCODE_LIN_NOT_SUPPORT_WAKEUP 0x80001653
ERRCODE_LIN_NOT_MASTER
errcode lin not master errcode_lin_not_master lin_not_master
#define ERRCODE_LIN_NOT_MASTER 0x80001654
ERRCODE_LIN_NOT_MASTER_MODE
errcode lin not master mode errcode_lin_not_master_mode lin_not_master_mode
#define ERRCODE_LIN_NOT_MASTER_MODE 0x80001655
ERRCODE_LIN_NOT_SLEEP
errcode lin not sleep errcode_lin_not_sleep lin_not_sleep
#define ERRCODE_LIN_NOT_SLEEP 0x80001656
ERRCODE_LIN_NOT_WAKEUP
errcode lin not wakeup errcode_lin_not_wakeup lin_not_wakeup
#define ERRCODE_LIN_NOT_WAKEUP 0x80001657
ERRCODE_LIN_NOT_OPERATIONAL
errcode lin not operational errcode_lin_not_operational lin_not_operational
#define ERRCODE_LIN_NOT_OPERATIONAL 0x80001658
ERRCODE_PARTITION_INIT_ERR
errcode partition init err errcode_partition_init_err partition_init_err
#define ERRCODE_PARTITION_INIT_ERR 0x80003000
ERRCODE_PARTITION_NOT_SUPPORT
errcode partition not support errcode_partition_not_support partition_not_support
#define ERRCODE_PARTITION_NOT_SUPPORT 0x80003001
ERRCODE_PARTITION_INVALID_PARAM
errcode partition invalid param errcode_partition_invalid_param partition_invalid_param
#define ERRCODE_PARTITION_INVALID_PARAM 0x80003002
ERRCODE_PARTITION_CONFIG_NOT_FOUND
errcode partition config not found errcode_partition_config_not_found partition_config_not_found
#define ERRCODE_PARTITION_CONFIG_NOT_FOUND 0x80003003
ERRCODE_IMAGE_CONFIG_NOT_FOUND
errcode image config not found errcode_image_config_not_found image_config_not_found
#define ERRCODE_IMAGE_CONFIG_NOT_FOUND 0x80003004
ERRCODE_AT_CHANNEL_BUSY
at_channel_busy errcode at channel busy errcode_at_channel_busy
#define ERRCODE_AT_CHANNEL_BUSY 0x80003020
ERRCODE_AT_CMD_TOO_LONG
at_cmd_too_long errcode at cmd too long errcode_at_cmd_too_long
#define ERRCODE_AT_CMD_TOO_LONG 0x80003021
ERRCODE_AT_CMD_REPEAT
at_cmd_repeat errcode at cmd repeat errcode_at_cmd_repeat
#define ERRCODE_AT_CMD_REPEAT 0x80003022
ERRCODE_AT_CMD_TABLE_PARA_ERROR
at_cmd_table_para_error errcode at cmd table para error errcode_at_cmd_table_para_error
#define ERRCODE_AT_CMD_TABLE_PARA_ERROR 0x80003023
ERRCODE_AT_MSG_SEND_ERROR
at_msg_send_error errcode at msg send error errcode_at_msg_send_error
#define ERRCODE_AT_MSG_SEND_ERROR 0x80003024
ERRCODE_UPG_NOT_INIT
errcode upg not init errcode_upg_not_init upg_not_init
#define ERRCODE_UPG_NOT_INIT 0x80003040
ERRCODE_UPG_ALREADY_INIT
errcode upg already init errcode_upg_already_init upg_already_init
#define ERRCODE_UPG_ALREADY_INIT 0x80003041
ERRCODE_UPG_INVALID_PARAMETER
errcode upg invalid parameter errcode_upg_invalid_parameter upg_invalid_parameter
#define ERRCODE_UPG_INVALID_PARAMETER 0x80003042
ERRCODE_UPG_WRONG_IMAGE_NUM
errcode upg wrong image num errcode_upg_wrong_image_num upg_wrong_image_num
#define ERRCODE_UPG_WRONG_IMAGE_NUM 0x80003043
ERRCODE_UPG_INVALID_IMAGE_ID
errcode upg invalid image id errcode_upg_invalid_image_id upg_invalid_image_id
#define ERRCODE_UPG_INVALID_IMAGE_ID 0x80003044
ERRCODE_UPG_NULL_POINTER
errcode upg null pointer errcode_upg_null_pointer upg_null_pointer
#define ERRCODE_UPG_NULL_POINTER 0x80003045
ERRCODE_UPG_NOT_SUPPORTED
errcode upg not supported errcode_upg_not_supported upg_not_supported
#define ERRCODE_UPG_NOT_SUPPORTED 0x80003046
ERRCODE_UPG_NOT_NEED_TO_UPDATE
errcode upg not need to update errcode_upg_not_need_to_update upg_not_need_to_update
#define ERRCODE_UPG_NOT_NEED_TO_UPDATE 0x80003047
ERRCODE_UPG_FLASH_ERASE_ERROR
errcode upg flash erase error errcode_upg_flash_erase_error upg_flash_erase_error
#define ERRCODE_UPG_FLASH_ERASE_ERROR 0x80003048
ERRCODE_UPG_FLASH_WRITE_ERROR
errcode upg flash write error errcode_upg_flash_write_error upg_flash_write_error
#define ERRCODE_UPG_FLASH_WRITE_ERROR 0x80003049
ERRCODE_UPG_FLAG_NOT_INIT
errcode upg flag not init errcode_upg_flag_not_init upg_flag_not_init
#define ERRCODE_UPG_FLAG_NOT_INIT 0x80003050
ERRCODE_UPG_NO_ENOUGH_SPACE
errcode upg no enough space errcode_upg_no_enough_space upg_no_enough_space
#define ERRCODE_UPG_NO_ENOUGH_SPACE 0x80003051
ERRCODE_UPG_PARTITION_ALIGN_ERROR
errcode upg partition align error errcode_upg_partition_align_error upg_partition_align_error
#define ERRCODE_UPG_PARTITION_ALIGN_ERROR 0x80003052
ERRCODE_UPG_INVALID_PREPARE_INFO
errcode upg invalid prepare info errcode_upg_invalid_prepare_info upg_invalid_prepare_info
#define ERRCODE_UPG_INVALID_PREPARE_INFO 0x80003053
ERRCODE_UPG_NOT_PREPARED
errcode upg not prepared errcode_upg_not_prepared upg_not_prepared
#define ERRCODE_UPG_NOT_PREPARED 0x80003054
ERRCODE_UPG_INVALID_BUFF_LEN
errcode upg invalid buff len errcode_upg_invalid_buff_len upg_invalid_buff_len
#define ERRCODE_UPG_INVALID_BUFF_LEN 0x80003055
ERRCODE_UPG_INVALID_OFFSET
errcode upg invalid offset errcode_upg_invalid_offset upg_invalid_offset
#define ERRCODE_UPG_INVALID_OFFSET 0x80003056
ERRCODE_UPG_FILE_OPEN_FAIL
errcode upg file open fail errcode_upg_file_open_fail upg_file_open_fail
#define ERRCODE_UPG_FILE_OPEN_FAIL 0x80003057
ERRCODE_UPG_FILE_WRITE_FAIL
errcode upg file write fail errcode_upg_file_write_fail upg_file_write_fail
#define ERRCODE_UPG_FILE_WRITE_FAIL 0x80003058
ERRCODE_UPG_FILE_SEEK_FAIL
errcode upg file seek fail errcode_upg_file_seek_fail upg_file_seek_fail
#define ERRCODE_UPG_FILE_SEEK_FAIL 0x80003059
ERRCODE_UPG_FILE_READ_FAIL
errcode upg file read fail errcode_upg_file_read_fail upg_file_read_fail
#define ERRCODE_UPG_FILE_READ_FAIL 0x80003060
ERRCODE_UPG_EMPTY_FILE
errcode upg empty file errcode_upg_empty_file upg_empty_file
#define ERRCODE_UPG_EMPTY_FILE 0x80003061
ERRCODE_UPG_DECOMPRESS_FAIL
errcode upg decompress fail errcode_upg_decompress_fail upg_decompress_fail
#define ERRCODE_UPG_DECOMPRESS_FAIL 0x80003062
ERRCODE_UPG_VERIFICATION_KEY_ERROR
errcode upg verification key error errcode_upg_verification_key_error upg_verification_key_error
#define ERRCODE_UPG_VERIFICATION_KEY_ERROR 0x80003063
ERRCODE_UPG_CHECK_FOTA_ERROR
errcode upg check fota error errcode_upg_check_fota_error upg_check_fota_error
#define ERRCODE_UPG_CHECK_FOTA_ERROR 0x80003064
ERRCODE_UPG_SET_IMG_ERROR
errcode upg set img error errcode_upg_set_img_error upg_set_img_error
#define ERRCODE_UPG_SET_IMG_ERROR 0x80003065
ERRCODE_UPG_BACKUP_UPDATE_ERROR
errcode upg backup update error errcode_upg_backup_update_error upg_backup_update_error
#define ERRCODE_UPG_BACKUP_UPDATE_ERROR 0x80003066
ERRCODE_UPG_RETRY_ALL_FAIL
errcode upg retry all fail errcode_upg_retry_all_fail upg_retry_all_fail
#define ERRCODE_UPG_RETRY_ALL_FAIL 0x80003067
ERRCODE_UPG_VERSION_ERROR
errcode upg version error errcode_upg_version_error upg_version_error
#define ERRCODE_UPG_VERSION_ERROR 0x80003068
ERRCODE_UPG_TIMEOUT
errcode upg timeout errcode_upg_timeout upg_timeout
#define ERRCODE_UPG_TIMEOUT 0x80003069
ERRCODE_UPG_REJECT_LOW_POWER
errcode upg reject low power errcode_upg_reject_low_power upg_reject_low_power
#define ERRCODE_UPG_REJECT_LOW_POWER 0x80003070
ERRCODE_NV_KEY_NOT_IN_WRITE_QUEUE
errcode nv key not in write queue errcode_nv_key_not_in_write_queue nv_key_not_in_write_queue
#define ERRCODE_NV_KEY_NOT_IN_WRITE_QUEUE 0x80003080
ERRCODE_NV_KEY_NOT_FOUND
errcode nv key not found errcode_nv_key_not_found nv_key_not_found
#define ERRCODE_NV_KEY_NOT_FOUND 0x80003081
ERRCODE_NV_GET_BUFFER_TOO_SMALL
errcode nv get buffer too small errcode_nv_get_buffer_too_small nv_get_buffer_too_small
#define ERRCODE_NV_GET_BUFFER_TOO_SMALL 0x80003082
ERRCODE_NV_INVALID_PARAM
errcode nv invalid param errcode_nv_invalid_param nv_invalid_param
#define ERRCODE_NV_INVALID_PARAM 0x80003083
ERRCODE_NV_RPC_ERROR
errcode nv rpc error errcode_nv_rpc_error nv_rpc_error
#define ERRCODE_NV_RPC_ERROR 0x80003084
ERRCODE_NV_TRYING_TO_MODIFY_A_PERMANENT_KEY
errcode nv trying to modify a permanent key errcode_nv_trying_to_modify_a_permanent_key nv_trying_to_modify_a_permanent_key
#define ERRCODE_NV_TRYING_TO_MODIFY_A_PERMANENT_KEY 0x80003085
ERRCODE_NV_BUFFER_TOO_SMALL
errcode nv buffer too small errcode_nv_buffer_too_small nv_buffer_too_small
#define ERRCODE_NV_BUFFER_TOO_SMALL 0x80003086
ERRCODE_NV_NO_ENOUGH_SPACE
errcode nv no enough space errcode_nv_no_enough_space nv_no_enough_space
#define ERRCODE_NV_NO_ENOUGH_SPACE 0x80003087
ERRCODE_NV_ILLEGAL_OPERATION
errcode nv illegal operation errcode_nv_illegal_operation nv_illegal_operation
#define ERRCODE_NV_ILLEGAL_OPERATION 0x80003088
ERRCODE_NV_SEM_WAIT_ERR
errcode nv sem wait err errcode_nv_sem_wait_err nv_sem_wait_err
#define ERRCODE_NV_SEM_WAIT_ERR 0x80003089
ERRCODE_NV_NOT_INIT
errcode nv not init errcode_nv_not_init nv_not_init
#define ERRCODE_NV_NOT_INIT 0x80003090
ERRCODE_NV_NOTIFY_LIST_FULL
errcode nv notify list full errcode_nv_notify_list_full nv_notify_list_full
#define ERRCODE_NV_NOTIFY_LIST_FULL 0x80003091
ERRCODE_NV_INIT_FAILED
errcode nv init failed errcode_nv_init_failed nv_init_failed
#define ERRCODE_NV_INIT_FAILED 0x80003092
ERRCODE_NV_ZERO_LENGTH_COPY
errcode nv zero length copy errcode_nv_zero_length_copy nv_zero_length_copy
#define ERRCODE_NV_ZERO_LENGTH_COPY 0x80003093
ERRCODE_NV_NOTIFY_SEGMENT_ERR
errcode nv notify segment err errcode_nv_notify_segment_err nv_notify_segment_err
#define ERRCODE_NV_NOTIFY_SEGMENT_ERR 0x80003094
ERRCODE_NV_READ_FLASH_ERR
errcode nv read flash err errcode_nv_read_flash_err nv_read_flash_err
#define ERRCODE_NV_READ_FLASH_ERR 0x80003095
ERRCODE_NV_DATA_MISMATCH
errcode nv data mismatch errcode_nv_data_mismatch nv_data_mismatch
#define ERRCODE_NV_DATA_MISMATCH 0x80003096
ERRCODE_NV_LENGTH_MISMATCH
errcode nv length mismatch errcode_nv_length_mismatch nv_length_mismatch
#define ERRCODE_NV_LENGTH_MISMATCH 0x80003097
ERRCODE_NV_KEY_HASH_BUFFER_NOT_ALLOCATED
errcode nv key hash buffer not allocated errcode_nv_key_hash_buffer_not_allocated nv_key_hash_buffer_not_allocated
#define ERRCODE_NV_KEY_HASH_BUFFER_NOT_ALLOCATED 0x80003098
ERRCODE_NV_KEY_DATA_BUFFER_NOT_ALLOCATED
errcode nv key data buffer not allocated errcode_nv_key_data_buffer_not_allocated nv_key_data_buffer_not_allocated
#define ERRCODE_NV_KEY_DATA_BUFFER_NOT_ALLOCATED 0x80003099
errcode nv invalid key header errcode_nv_invalid_key_header nv_invalid_key_header
#define ERRCODE_NV_INVALID_KEY_HEADER 0x80003100
ERRCODE_NV_SEARCH_PATTERN_MISMATCH
errcode nv search pattern mismatch errcode_nv_search_pattern_mismatch nv_search_pattern_mismatch
#define ERRCODE_NV_SEARCH_PATTERN_MISMATCH 0x80003101
ERRCODE_NV_SEARCH_KEY_TYPE_MISMATCH
errcode nv search key type mismatch errcode_nv_search_key_type_mismatch nv_search_key_type_mismatch
#define ERRCODE_NV_SEARCH_KEY_TYPE_MISMATCH 0x80003102
ERRCODE_NV_SEARCH_KEY_STATE_MISMATCH
errcode nv search key state mismatch errcode_nv_search_key_state_mismatch nv_search_key_state_mismatch
#define ERRCODE_NV_SEARCH_KEY_STATE_MISMATCH 0x80003103
ERRCODE_NV_HASH_MISMATCH
errcode nv hash mismatch errcode_nv_hash_mismatch nv_hash_mismatch
#define ERRCODE_NV_HASH_MISMATCH 0x80003104
ERRCODE_NV_PAGE_NOT_FOUND
errcode nv page not found errcode_nv_page_not_found nv_page_not_found
#define ERRCODE_NV_PAGE_NOT_FOUND 0x80003105
ERRCODE_NV_INVALID_PAGE
errcode nv invalid page errcode_nv_invalid_page nv_invalid_page
#define ERRCODE_NV_INVALID_PAGE 0x80003106
ERRCODE_NV_INVALID_STORE
errcode nv invalid store errcode_nv_invalid_store nv_invalid_store
#define ERRCODE_NV_INVALID_STORE 0x80003107
ERRCODE_NV_DEFRAGMENTATION_NEEDED
errcode nv defragmentation needed errcode_nv_defragmentation_needed nv_defragmentation_needed
#define ERRCODE_NV_DEFRAGMENTATION_NEEDED 0x80003108
ERRCODE_NV_HASH_UNAVAILABLE
errcode nv hash unavailable errcode_nv_hash_unavailable nv_hash_unavailable
#define ERRCODE_NV_HASH_UNAVAILABLE 0x80003109
ERRCODE_NV_AES_UNAVAILABLE
errcode nv aes unavailable errcode_nv_aes_unavailable nv_aes_unavailable
#define ERRCODE_NV_AES_UNAVAILABLE 0x80003110
ERRCODE_NV_BUFFER_PRIMED_PREMATURELY
errcode nv buffer primed prematurely errcode_nv_buffer_primed_prematurely nv_buffer_primed_prematurely
#define ERRCODE_NV_BUFFER_PRIMED_PREMATURELY 0x80003111
ERRCODE_NV_KEY_HASH_BUFFER_TOO_SMALL
errcode nv key hash buffer too small errcode_nv_key_hash_buffer_too_small nv_key_hash_buffer_too_small
#define ERRCODE_NV_KEY_HASH_BUFFER_TOO_SMALL 0x80003112
ERRCODE_NV_WRITE_BUFFER_NOT_ALLOCATED
errcode nv write buffer not allocated errcode_nv_write_buffer_not_allocated nv_write_buffer_not_allocated
#define ERRCODE_NV_WRITE_BUFFER_NOT_ALLOCATED 0x80003113
ERRCODE_NV_WRITE_BUFFER_TOO_SMALL
errcode nv write buffer too small errcode_nv_write_buffer_too_small nv_write_buffer_too_small
#define ERRCODE_NV_WRITE_BUFFER_TOO_SMALL 0x80003114
ERRCODE_NV_WRITE_VETOED
errcode nv write vetoed errcode_nv_write_vetoed nv_write_vetoed
#define ERRCODE_NV_WRITE_VETOED 0x80003115
errcode nv key header buffer not allocated errcode_nv_key_header_buffer_not_allocated nv_key_header_buffer_not_allocated
#define ERRCODE_NV_KEY_HEADER_BUFFER_NOT_ALLOCATED 0x80003116
ERRCODE_NV_STATE_INVALID
errcode nv state invalid errcode_nv_state_invalid nv_state_invalid
#define ERRCODE_NV_STATE_INVALID 0x80003117
ERRCODE_NV_PAGE_REALIGN_NEEDED
errcode nv page realign needed errcode_nv_page_realign_needed nv_page_realign_needed
#define ERRCODE_NV_PAGE_REALIGN_NEEDED 0x80003118
errcode nv extra region config invalid errcode_nv_extra_region_config_invalid nv_extra_region_config_invalid
#define ERRCODE_NV_EXTRA_REGION_CONFIG_INVALID 0x80003119
ERRCODE_FLASH_TASK_COMPLETED
errcode flash task completed errcode_flash_task_completed flash_task_completed
#define ERRCODE_FLASH_TASK_COMPLETED 0x80003130
ERRCODE_FLASH_INVALID_PARAM_BEYOND_ADDR
errcode flash invalid param beyond addr errcode_flash_invalid_param_beyond_addr flash_invalid_param_beyond_addr
#define ERRCODE_FLASH_INVALID_PARAM_BEYOND_ADDR 0x80003131
ERRCODE_FLASH_TASK_PE_VETO
errcode flash task pe veto errcode_flash_task_pe_veto flash_task_pe_veto
#define ERRCODE_FLASH_TASK_PE_VETO 0x80003132
ERRCODE_FLASH_CONFIG_FAIL
errcode flash config fail errcode_flash_config_fail flash_config_fail
#define ERRCODE_FLASH_CONFIG_FAIL 0x80003133
ERRCODE_FLASH_SPI_TRANS_FAIL
errcode flash spi trans fail errcode_flash_spi_trans_fail flash_spi_trans_fail
#define ERRCODE_FLASH_SPI_TRANS_FAIL 0x80003134
ERRCODE_FLASH_TIMEOUT
errcode flash timeout errcode_flash_timeout flash_timeout
#define ERRCODE_FLASH_TIMEOUT 0x80003135
ERRCODE_FLASH_FALSE_MODE
errcode flash false mode errcode_flash_false_mode flash_false_mode
#define ERRCODE_FLASH_FALSE_MODE 0x80003136
ERRCODE_FLASH_SPI_CONFIG_FAIL
errcode flash spi config fail errcode_flash_spi_config_fail flash_spi_config_fail
#define ERRCODE_FLASH_SPI_CONFIG_FAIL 0x80003137
ERRCODE_FLASH_SPI_INIT_FAIL
errcode flash spi init fail errcode_flash_spi_init_fail flash_spi_init_fail
#define ERRCODE_FLASH_SPI_INIT_FAIL 0x80003138
ERRCODE_FLASH_INIT_FAIL
errcode flash init fail errcode_flash_init_fail flash_init_fail
#define ERRCODE_FLASH_INIT_FAIL 0x80003139
ERRCODE_IPC_NOT_INIT
errcode ipc not init errcode_ipc_not_init ipc_not_init
#define ERRCODE_IPC_NOT_INIT 0x80003140
ERRCODE_IPC_INVALID_PARAMETER
errcode ipc invalid parameter errcode_ipc_invalid_parameter ipc_invalid_parameter
#define ERRCODE_IPC_INVALID_PARAMETER 0x80003141
ERRCODE_IPC_REG_ADDR_INVALID
errcode ipc reg addr invalid errcode_ipc_reg_addr_invalid ipc_reg_addr_invalid
#define ERRCODE_IPC_REG_ADDR_INVALID 0x80003142
ERRCODE_IPC_NOT_REGISTER_HAL_FUNCS
errcode ipc not register hal funcs errcode_ipc_not_register_hal_funcs ipc_not_register_hal_funcs
#define ERRCODE_IPC_NOT_REGISTER_HAL_FUNCS 0x80003143
ERRCODE_IPC_UNDEFINED_ACTION
errcode ipc undefined action errcode_ipc_undefined_action ipc_undefined_action
#define ERRCODE_IPC_UNDEFINED_ACTION 0x80003144
ERRCODE_IPC_ASYNC_BUF_OVERFLOW
errcode ipc async buf overflow errcode_ipc_async_buf_overflow ipc_async_buf_overflow
#define ERRCODE_IPC_ASYNC_BUF_OVERFLOW 0x80003145
ERRCODE_IPC_MAILBOX_STATUS_BUSY
errcode ipc mailbox status busy errcode_ipc_mailbox_status_busy ipc_mailbox_status_busy
#define ERRCODE_IPC_MAILBOX_STATUS_BUSY 0x80003146
ERRCODE_IPC_MAILBOX_STATUS_IDLE
errcode ipc mailbox status idle errcode_ipc_mailbox_status_idle ipc_mailbox_status_idle
#define ERRCODE_IPC_MAILBOX_STATUS_IDLE 0x80003147
ERRCODE_IPC_SLAVE_POWER_OFF
errcode ipc slave power off errcode_ipc_slave_power_off ipc_slave_power_off
#define ERRCODE_IPC_SLAVE_POWER_OFF 0x80003148
ERRCODE_TEST_SUITE_STATUS_RETURN_CONTROL
errcode test suite status return control errcode_test_suite_status_return_control test_suite_status_return_control
#define ERRCODE_TEST_SUITE_STATUS_RETURN_CONTROL 0x80003160
ERRCODE_TEST_SUITE_OK
errcode test suite ok errcode_test_suite_ok test_suite_ok
#define ERRCODE_TEST_SUITE_OK 0x80003161
ERRCODE_TEST_SUITE_UNKNOWN_FUNCTION
errcode test suite unknown function errcode_test_suite_unknown_function test_suite_unknown_function
#define ERRCODE_TEST_SUITE_UNKNOWN_FUNCTION 0x80003162
ERRCODE_TEST_SUITE_ERROR_TIMED_OUT
errcode test suite error timed out errcode_test_suite_error_timed_out test_suite_error_timed_out
#define ERRCODE_TEST_SUITE_ERROR_TIMED_OUT 0x80003163
ERRCODE_TEST_SUITE_ERROR_BAD_PARAMS
errcode test suite error bad params errcode_test_suite_error_bad_params test_suite_error_bad_params
#define ERRCODE_TEST_SUITE_ERROR_BAD_PARAMS 0x80003164
ERRCODE_TEST_SUITE_ERROR_PIN_ALLOCATION
errcode test suite error pin allocation errcode_test_suite_error_pin_allocation test_suite_error_pin_allocation
#define ERRCODE_TEST_SUITE_ERROR_PIN_ALLOCATION 0x80003165
ERRCODE_TEST_SUITE_ERROR_PIN_DEALLOCATION
errcode test suite error pin deallocation errcode_test_suite_error_pin_deallocation test_suite_error_pin_deallocation
#define ERRCODE_TEST_SUITE_ERROR_PIN_DEALLOCATION 0x80003166
ERRCODE_TEST_SUITE_ERROR_UNEXPECTED_INTERRUPT
errcode test suite error unexpected interrupt errcode_test_suite_error_unexpected_interrupt test_suite_error_unexpected_interrupt
#define ERRCODE_TEST_SUITE_ERROR_UNEXPECTED_INTERRUPT 0x80003167
ERRCODE_TEST_SUITE_ALLOC_FAILED
errcode test suite alloc failed errcode_test_suite_alloc_failed test_suite_alloc_failed
#define ERRCODE_TEST_SUITE_ALLOC_FAILED 0x80003168
ERRCODE_TEST_SUITE_CONFIG_FAILED
errcode test suite config failed errcode_test_suite_config_failed test_suite_config_failed
#define ERRCODE_TEST_SUITE_CONFIG_FAILED 0x80003169
ERRCODE_TEST_SUITE_UNKNOWN_COMMAND
errcode test suite unknown command errcode_test_suite_unknown_command test_suite_unknown_command
#define ERRCODE_TEST_SUITE_UNKNOWN_COMMAND 0x80003170
ERRCODE_TEST_SUITE_UNRECOGNIZED_COMMAND
errcode test suite unrecognized command errcode_test_suite_unrecognized_command test_suite_unrecognized_command
#define ERRCODE_TEST_SUITE_UNRECOGNIZED_COMMAND 0x80003171
ERRCODE_TEST_SUITE_TEST_FAILED
errcode test suite test failed errcode_test_suite_test_failed test_suite_test_failed
#define ERRCODE_TEST_SUITE_TEST_FAILED 0x80003172
ERRCODE_DIAG_STAT_INVALID_ID
diag_stat_invalid_id errcode diag stat invalid id errcode_diag_stat_invalid_id
#define ERRCODE_DIAG_STAT_INVALID_ID 0x80003180
ERRCODE_DIAG_NOT_INIT
diag_not_init errcode diag not init errcode_diag_not_init
#define ERRCODE_DIAG_NOT_INIT 0x80003181
ERRCODE_DIAG_NOT_FOUND
diag_not_found errcode diag not found errcode_diag_not_found
#define ERRCODE_DIAG_NOT_FOUND 0x80003182
ERRCODE_DIAG_INVALID_PARAMETER
diag_invalid_parameter errcode diag invalid parameter errcode_diag_invalid_parameter
#define ERRCODE_DIAG_INVALID_PARAMETER 0x80003183
ERRCODE_DIAG_CONSUMED
diag_consumed errcode diag consumed errcode_diag_consumed
#define ERRCODE_DIAG_CONSUMED 0x80003184
ERRCODE_DIAG_TOO_SMALL_BUFFER
diag_too_small_buffer errcode diag too small buffer errcode_diag_too_small_buffer
#define ERRCODE_DIAG_TOO_SMALL_BUFFER 0x80003185
ERRCODE_DIAG_NO_MORE_DATA
diag_no_more_data errcode diag no more data errcode_diag_no_more_data
#define ERRCODE_DIAG_NO_MORE_DATA 0x80003186
ERRCODE_DIAG_NOT_ENOUGH_MEMORY
diag_not_enough_memory errcode diag not enough memory errcode_diag_not_enough_memory
#define ERRCODE_DIAG_NOT_ENOUGH_MEMORY 0x80003187
ERRCODE_DIAG_INVALID_HEAP_ADDR
diag_invalid_heap_addr errcode diag invalid heap addr errcode_diag_invalid_heap_addr
#define ERRCODE_DIAG_INVALID_HEAP_ADDR 0x80003188
ERRCODE_DIAG_NOT_CONNECT
diag_not_connect errcode diag not connect errcode_diag_not_connect
#define ERRCODE_DIAG_NOT_CONNECT 0x80003189
ERRCODE_DIAG_BUSY
diag_busy errcode diag busy errcode_diag_busy
#define ERRCODE_DIAG_BUSY 0x8000318A
ERRCODE_DIAG_TOO_LARGE_FRAME
diag_too_large_frame errcode diag too large frame errcode_diag_too_large_frame
#define ERRCODE_DIAG_TOO_LARGE_FRAME 0x8000318B
ERRCODE_DIAG_RAM_ALIGN
diag_ram_align errcode diag ram align errcode_diag_ram_align
#define ERRCODE_DIAG_RAM_ALIGN 0x8000318C
ERRCODE_DIAG_NOT_SUPPORT
diag_not_support errcode diag not support errcode_diag_not_support
#define ERRCODE_DIAG_NOT_SUPPORT 0x8000318D
ERRCODE_DIAG_QUEUE_FULL
diag_queue_full errcode diag queue full errcode_diag_queue_full
#define ERRCODE_DIAG_QUEUE_FULL 0x8000318E
ERRCODE_DIAG_MSG_CFG_NOT_ALLOW
diag_msg_cfg_not_allow errcode diag msg cfg not allow errcode_diag_msg_cfg_not_allow
#define ERRCODE_DIAG_MSG_CFG_NOT_ALLOW 0x8000318F
ERRCODE_DIAG_TOO_LARGE_MSG
diag_too_large_msg errcode diag too large msg errcode_diag_too_large_msg
#define ERRCODE_DIAG_TOO_LARGE_MSG 0x80003190
ERRCODE_DIAG_INVALID_CODE_ADDR
diag_invalid_code_addr errcode diag invalid code addr errcode_diag_invalid_code_addr
#define ERRCODE_DIAG_INVALID_CODE_ADDR 0x80003191
ERRCODE_DIAG_OBJ_NOT_FOUND
diag_obj_not_found errcode diag obj not found errcode_diag_obj_not_found
#define ERRCODE_DIAG_OBJ_NOT_FOUND 0x80003192
ERRCODE_DIAG_BLOCK_EMPTY
diag_block_empty errcode diag block empty errcode_diag_block_empty
#define ERRCODE_DIAG_BLOCK_EMPTY 0x80003193
ERRCODE_DIAG_NOT_ENOUGH_SHARE_SPACE
diag_not_enough_share_space errcode diag not enough share space errcode_diag_not_enough_share_space
#define ERRCODE_DIAG_NOT_ENOUGH_SHARE_SPACE 0x80003194
ERRCODE_DIAG_CORRUPT_SHARED_MEMORY
diag_corrupt_shared_memory errcode diag corrupt shared memory errcode_diag_corrupt_shared_memory
#define ERRCODE_DIAG_CORRUPT_SHARED_MEMORY 0x80003195
ERRCODE_DIAG_NO_NEXT_MESSAGE
diag_no_next_message errcode diag no next message errcode_diag_no_next_message
#define ERRCODE_DIAG_NO_NEXT_MESSAGE 0x80003196
ERRCODE_DIAG_KV_NOT_SUPPORT_ID
diag_kv_not_support_id errcode diag kv not support id errcode_diag_kv_not_support_id
#define ERRCODE_DIAG_KV_NOT_SUPPORT_ID 0x80003197
ERRCODE_DIAG_BAD_DATA
diag_bad_data errcode diag bad data errcode_diag_bad_data
#define ERRCODE_DIAG_BAD_DATA 0x80003198
ERRCODE_DIAG_CRC_ERROR
diag_crc_error errcode diag crc error errcode_diag_crc_error
#define ERRCODE_DIAG_CRC_ERROR 0x80003199
ERRCODE_DIAG_TRANSMIT_TIMEOUT
diag_transmit_timeout errcode diag transmit timeout errcode_diag_transmit_timeout
#define ERRCODE_DIAG_TRANSMIT_TIMEOUT 0x80003200
ERRCODE_DIAG_TRANSMIT_USER_STOP
diag_transmit_user_stop errcode diag transmit user stop errcode_diag_transmit_user_stop
#define ERRCODE_DIAG_TRANSMIT_USER_STOP 0x80003201
ERRCODE_DFX_LOGFILE_INTERAL_FAIL
dfx_logfile_interal_fail errcode dfx logfile interal fail errcode_dfx_logfile_interal_fail
#define ERRCODE_DFX_LOGFILE_INTERAL_FAIL 0x80003210
ERRCODE_DFX_LOGFILE_RECORD_INVALID
dfx_logfile_record_invalid errcode dfx logfile record invalid errcode_dfx_logfile_record_invalid
#define ERRCODE_DFX_LOGFILE_RECORD_INVALID 0x80003211
ERRCODE_DFX_LOGFILE_WRITE_FAIL
dfx_logfile_write_fail errcode dfx logfile write fail errcode_dfx_logfile_write_fail
#define ERRCODE_DFX_LOGFILE_WRITE_FAIL 0x80003212
ERRCODE_DFX_LOGFILE_OPEN_FAIL
dfx_logfile_open_fail errcode dfx logfile open fail errcode_dfx_logfile_open_fail
#define ERRCODE_DFX_LOGFILE_OPEN_FAIL 0x80003213
ERRCODE_DFX_LOGFILE_EVENT_FAILURE
dfx_logfile_event_failure errcode dfx logfile event failure errcode_dfx_logfile_event_failure
#define ERRCODE_DFX_LOGFILE_EVENT_FAILURE 0x80003214
ERRCODE_DFX_LOGFILE_MUTEX_FAILURE
dfx_logfile_mutex_failure errcode dfx logfile mutex failure errcode_dfx_logfile_mutex_failure
#define ERRCODE_DFX_LOGFILE_MUTEX_FAILURE 0x80003215
ERRCODE_DFX_LOGFILE_TIMER_FAILURE
dfx_logfile_timer_failure errcode dfx logfile timer failure errcode_dfx_logfile_timer_failure
#define ERRCODE_DFX_LOGFILE_TIMER_FAILURE 0x80003216
ERRCODE_DFX_LOGFILE_THREAD_FAILURE
dfx_logfile_thread_failure errcode dfx logfile thread failure errcode_dfx_logfile_thread_failure
#define ERRCODE_DFX_LOGFILE_THREAD_FAILURE 0x80003217
ERRCODE_DFX_LOGFILE_ALREADY_OPEN
dfx_logfile_already_open errcode dfx logfile already open errcode_dfx_logfile_already_open
#define ERRCODE_DFX_LOGFILE_ALREADY_OPEN 0x80003218
ERRCODE_DFX_LOGFILE_MKDIR_FATAL
dfx_logfile_mkdir_fatal errcode dfx logfile mkdir fatal errcode_dfx_logfile_mkdir_fatal
#define ERRCODE_DFX_LOGFILE_MKDIR_FATAL 0x80003219
ERRCODE_DFX_LOGFILE_SUSPENDED
dfx_logfile_suspended errcode dfx logfile suspended errcode_dfx_logfile_suspended
#define ERRCODE_DFX_LOGFILE_SUSPENDED 0x8000321A
ERRCODE_DFX_LOGFILE_NOT_INITIALIZED
dfx_logfile_not_initialized errcode dfx logfile not initialized errcode_dfx_logfile_not_initialized
#define ERRCODE_DFX_LOGFILE_NOT_INITIALIZED 0x8000321B
ERRCODE_DFX_LOGFILE_NOT_OPEN
dfx_logfile_not_open errcode dfx logfile not open errcode_dfx_logfile_not_open
#define ERRCODE_DFX_LOGFILE_NOT_OPEN 0x8000321C
ERRCODE_DFX_LOGFILE_FLASH_PREPARE_FAIL
dfx_logfile_flash_prepare_fail errcode dfx logfile flash prepare fail errcode_dfx_logfile_flash_prepare_fail
#define ERRCODE_DFX_LOGFILE_FLASH_PREPARE_FAIL 0x80003220
ERRCODE_DFX_LOGFILE_NOT_ENOUGH_SPACE
dfx_logfile_not_enough_space errcode dfx logfile not enough space errcode_dfx_logfile_not_enough_space
#define ERRCODE_DFX_LOGFILE_NOT_ENOUGH_SPACE 0x80003221
ERRCODE_PM_ERROR
errcode pm error errcode_pm_error pm_error
#define ERRCODE_PM_ERROR 0x80003230
ERRCODE_PM_INVALID_PARAMETER
errcode pm invalid parameter errcode_pm_invalid_parameter pm_invalid_parameter
#define ERRCODE_PM_INVALID_PARAMETER 0x80003231
ERRCODE_PM_MEM_ALLOC_ERROR
errcode pm mem alloc error errcode_pm_mem_alloc_error pm_mem_alloc_error
#define ERRCODE_PM_MEM_ALLOC_ERROR 0x80003232
ERRCODE_PM_RET_MEM_FREE_ERROR
errcode pm ret mem free error errcode_pm_ret_mem_free_error pm_ret_mem_free_error
#define ERRCODE_PM_RET_MEM_FREE_ERROR 0x80003233
ERRCODE_PM_CUSTOM_MODE_EXISTS
errcode pm custom mode exists errcode_pm_custom_mode_exists pm_custom_mode_exists
#define ERRCODE_PM_CUSTOM_MODE_EXISTS 0x80003234
ERRCODE_PM_SLEEP_THRESHOLD_TOO_SMALL
errcode pm sleep threshold too small errcode_pm_sleep_threshold_too_small pm_sleep_threshold_too_small
#define ERRCODE_PM_SLEEP_THRESHOLD_TOO_SMALL 0x80003235
ERRCODE_PM_SWITCH_FUNC_NULL
errcode pm switch func null errcode_pm_switch_func_null pm_switch_func_null
#define ERRCODE_PM_SWITCH_FUNC_NULL 0x80003236
ERRCODE_PM_PF_IS_OFF
errcode pm pf is off errcode_pm_pf_is_off pm_pf_is_off
#define ERRCODE_PM_PF_IS_OFF 0x80003237
ERRCODE_PM_SWITCH_FUNC_FAIL
errcode pm switch func fail errcode_pm_switch_func_fail pm_switch_func_fail
#define ERRCODE_PM_SWITCH_FUNC_FAIL 0x80003238
ERRCODE_PM_RECORD_REQ_STS_FAIL
errcode pm record req sts fail errcode_pm_record_req_sts_fail pm_record_req_sts_fail
#define ERRCODE_PM_RECORD_REQ_STS_FAIL 0x80003239
ERRCODE_PM_WFI_PROCESS
errcode pm wfi process errcode_pm_wfi_process pm_wfi_process
#define ERRCODE_PM_WFI_PROCESS 0x80003240
ERRCODE_PM_WORK_PROCESS
errcode pm work process errcode_pm_work_process pm_work_process
#define ERRCODE_PM_WORK_PROCESS 0x80003241
ERRCODE_PM_DEEPSLEEP_PROCESS
errcode pm deepsleep process errcode_pm_deepsleep_process pm_deepsleep_process
#define ERRCODE_PM_DEEPSLEEP_PROCESS 0x80003242
ERRCODE_PM_LIGHTSLEEP_PROCESS
errcode pm lightsleep process errcode_pm_lightsleep_process pm_lightsleep_process
#define ERRCODE_PM_LIGHTSLEEP_PROCESS 0x80003243
ERRCODE_PM_SERV_ID_NOT_ENABLE
errcode pm serv id not enable errcode_pm_serv_id_not_enable pm_serv_id_not_enable
#define ERRCODE_PM_SERV_ID_NOT_ENABLE 0x80003244
ERRCODE_PM_MODE_DOWNGRADED
errcode pm mode downgraded errcode_pm_mode_downgraded pm_mode_downgraded
#define ERRCODE_PM_MODE_DOWNGRADED 0x80003245
ERRCODE_PM_MODE_ONLY_REMOVE_VOTE
errcode pm mode only remove vote errcode_pm_mode_only_remove_vote pm_mode_only_remove_vote
#define ERRCODE_PM_MODE_ONLY_REMOVE_VOTE 0x80003246
ERRCODE_PM_MODE_ONLY_JOIN_VOTE
errcode pm mode only join vote errcode_pm_mode_only_join_vote pm_mode_only_join_vote
#define ERRCODE_PM_MODE_ONLY_JOIN_VOTE 0x80003247
ERRCODE_SDIO_NOT_INIT
errcode sdio not init errcode_sdio_not_init sdio_not_init
#define ERRCODE_SDIO_NOT_INIT 0x80003250
ERRCODE_SDIO_INVALID_PARAMETER
errcode sdio invalid parameter errcode_sdio_invalid_parameter sdio_invalid_parameter
#define ERRCODE_SDIO_INVALID_PARAMETER 0x80003251
ERRCODE_SDIO_REG_ADDR_INVALID
errcode sdio reg addr invalid errcode_sdio_reg_addr_invalid sdio_reg_addr_invalid
#define ERRCODE_SDIO_REG_ADDR_INVALID 0x80003252
ERRCODE_SDIO_ERR_OVERFLOW
errcode sdio err overflow errcode_sdio_err_overflow sdio_err_overflow
#define ERRCODE_SDIO_ERR_OVERFLOW 0x80003253
ERRCODE_SDIO_ERR_MSG_TO_HOST_NOT_READ
errcode sdio err msg to host not read errcode_sdio_err_msg_to_host_not_read sdio_err_msg_to_host_not_read
#define ERRCODE_SDIO_ERR_MSG_TO_HOST_NOT_READ 0x80003254
ERRCODE_SDIO_ERR_INIT_CARD_RDY_TIMEOUT
errcode sdio err init card rdy timeout errcode_sdio_err_init_card_rdy_timeout sdio_err_init_card_rdy_timeout
#define ERRCODE_SDIO_ERR_INIT_CARD_RDY_TIMEOUT 0x80003255
ERRCODE_SDIO_ERR_INIT_FUN1_RDY_TIMEOUT
errcode sdio err init fun1 rdy timeout errcode_sdio_err_init_fun1_rdy_timeout sdio_err_init_fun1_rdy_timeout
#define ERRCODE_SDIO_ERR_INIT_FUN1_RDY_TIMEOUT 0x80003256
ERRCODE_SDIO_ERR_STATUS
errcode sdio err status errcode_sdio_err_status sdio_err_status
#define ERRCODE_SDIO_ERR_STATUS 0x80003257
ERRCODE_SEC_KEY_GEN_INVALID_PARAM
errcode sec key gen invalid param errcode_sec_key_gen_invalid_param sec_key_gen_invalid_param
#define ERRCODE_SEC_KEY_GEN_INVALID_PARAM 0x80003280
ERRCODE_SEC_IAMGE_ID_INVALID
errcode sec iamge id invalid errcode_sec_iamge_id_invalid sec_iamge_id_invalid
#define ERRCODE_SEC_IAMGE_ID_INVALID 0x80003281
ERRCODE_SEC_IMAGE_MSID_INVALID
errcode sec image msid invalid errcode_sec_image_msid_invalid sec_image_msid_invalid
#define ERRCODE_SEC_IMAGE_MSID_INVALID 0x80003290
ERRCODE_SEC_IMAGE_DIE_ID_INVALID
errcode sec image die id invalid errcode_sec_image_die_id_invalid sec_image_die_id_invalid
#define ERRCODE_SEC_IMAGE_DIE_ID_INVALID 0x80003291
ERRCODE_SEC_IMAGE_KEY_INVALID_PARAM
errcode sec image key invalid param errcode_sec_image_key_invalid_param sec_image_key_invalid_param
#define ERRCODE_SEC_IMAGE_KEY_INVALID_PARAM 0x80003292
ERRCODE_SEC_IMAGE_KEY_ID_INVALID
errcode sec image key id invalid errcode_sec_image_key_id_invalid sec_image_key_id_invalid
#define ERRCODE_SEC_IMAGE_KEY_ID_INVALID 0x80003293
ERRCODE_SEC_IMAGE_KEY_VERSION_INVALID
errcode sec image key version invalid errcode_sec_image_key_version_invalid sec_image_key_version_invalid
#define ERRCODE_SEC_IMAGE_KEY_VERSION_INVALID 0x80003294
ERRCODE_SEC_IMAGE_KEY_AREA_VERIFY_FAILED
errcode sec image key area verify failed errcode_sec_image_key_area_verify_failed sec_image_key_area_verify_failed
#define ERRCODE_SEC_IMAGE_KEY_AREA_VERIFY_FAILED 0x80003295
ERRCODE_SEC_IMAGE_KEY_LENGTH_INVALID
errcode sec image key length invalid errcode_sec_image_key_length_invalid sec_image_key_length_invalid
#define ERRCODE_SEC_IMAGE_KEY_LENGTH_INVALID 0x80003296
ERRCODE_SEC_IMAGE_INFO_INVALID_PARAM
errcode sec image info invalid param errcode_sec_image_info_invalid_param sec_image_info_invalid_param
#define ERRCODE_SEC_IMAGE_INFO_INVALID_PARAM 0x800032a0
ERRCODE_SEC_IMAGE_INFO_ID_INVALID
errcode sec image info id invalid errcode_sec_image_info_id_invalid sec_image_info_id_invalid
#define ERRCODE_SEC_IMAGE_INFO_ID_INVALID 0x800032a1
ERRCODE_SEC_IMAGE_INFO_VERSION_INVALID
errcode sec image info version invalid errcode_sec_image_info_version_invalid sec_image_info_version_invalid
#define ERRCODE_SEC_IMAGE_INFO_VERSION_INVALID 0x800032a2
ERRCODE_SEC_IMAGE_INFO_AREA_VERIFY_FAILED
errcode sec image info area verify failed errcode_sec_image_info_area_verify_failed sec_image_info_area_verify_failed
#define ERRCODE_SEC_IMAGE_INFO_AREA_VERIFY_FAILED 0x800032a3
ERRCODE_SEC_IMAGE_CODE_INVALID_PARAM
errcode sec image code invalid param errcode_sec_image_code_invalid_param sec_image_code_invalid_param
#define ERRCODE_SEC_IMAGE_CODE_INVALID_PARAM 0x800032b0
ERRCODE_SEC_IMAGE_CODE_CHECK_FAILED
errcode sec image code check failed errcode_sec_image_code_check_failed sec_image_code_check_failed
#define ERRCODE_SEC_IMAGE_CODE_CHECK_FAILED 0x800032b1
ERRCODE_SEC_IMAGE_CODE_GET_HASH_FAILED
errcode sec image code get hash failed errcode_sec_image_code_get_hash_failed sec_image_code_get_hash_failed
#define ERRCODE_SEC_IMAGE_CODE_GET_HASH_FAILED 0x800032b2
ERRCODE_SYS_COMMU_INVALID_PARAM
errcode sys commu invalid param errcode_sys_commu_invalid_param sys_commu_invalid_param
#define ERRCODE_SYS_COMMU_INVALID_PARAM 0x80003301
ERRCODE_SYS_COMMU_NO_RESOURCE
errcode sys commu no resource errcode_sys_commu_no_resource sys_commu_no_resource
#define ERRCODE_SYS_COMMU_NO_RESOURCE 0x80003302
ERRCODE_EPMU_CONFIG_ERR
epmu_config_err errcode epmu config err errcode_epmu_config_err
#define ERRCODE_EPMU_CONFIG_ERR 0x80009000
ERRCODE_EPMU_STAT_ERR
epmu_stat_err errcode epmu stat err errcode_epmu_stat_err
#define ERRCODE_EPMU_STAT_ERR 0x80009001
ERRCODE_EPMU_NULL_PTR
epmu_null_ptr errcode epmu null ptr errcode_epmu_null_ptr
#define ERRCODE_EPMU_NULL_PTR 0x80009002
ERRCODE_EPMU_UNSUPPORT
epmu_unsupport errcode epmu unsupport errcode_epmu_unsupport
#define ERRCODE_EPMU_UNSUPPORT 0x80009003
ERRCODE_EPMU_ADDR_ERR
epmu_addr_err errcode epmu addr err errcode_epmu_addr_err
#define ERRCODE_EPMU_ADDR_ERR 0x80009004
ERRCODE_EPMU_BUS_ERR
epmu_bus_err errcode epmu bus err errcode_epmu_bus_err
#define ERRCODE_EPMU_BUS_ERR 0x80009005
ERRCODE_EPMU_TIMEOUT
epmu_timeout errcode epmu timeout errcode_epmu_timeout
#define ERRCODE_EPMU_TIMEOUT 0x80009006
ERRCODE_EPMU_NV_ERR
epmu_nv_err errcode epmu nv err errcode_epmu_nv_err
#define ERRCODE_EPMU_NV_ERR 0x80009007
ERRCODE_EPMU_NOT_INIT
epmu_not_init errcode epmu not init errcode_epmu_not_init
#define ERRCODE_EPMU_NOT_INIT 0x80009008
ERRCODE_GNSS_CREATE_THREAD_FAILED
errcode gnss create thread failed errcode_gnss_create_thread_failed gnss_create_thread_failed
#define ERRCODE_GNSS_CREATE_THREAD_FAILED 0x8000A000
ERRCODE_GNSS_OPEN_GNSS_FAILED
errcode gnss open gnss failed errcode_gnss_open_gnss_failed gnss_open_gnss_failed
#define ERRCODE_GNSS_OPEN_GNSS_FAILED 0x8000A001
ERRCODE_GNSS_CLOSE_GNSS_FAILED
errcode gnss close gnss failed errcode_gnss_close_gnss_failed gnss_close_gnss_failed
#define ERRCODE_GNSS_CLOSE_GNSS_FAILED 0x8000A002
ERRCODE_GNSS_CALLBACK_TYPE_ERROR
errcode gnss callback type error errcode_gnss_callback_type_error gnss_callback_type_error
#define ERRCODE_GNSS_CALLBACK_TYPE_ERROR 0x8000A003
ERRCODE_GNSS_CALLBACK_FUNC_ERROR
errcode gnss callback func error errcode_gnss_callback_func_error gnss_callback_func_error
#define ERRCODE_GNSS_CALLBACK_FUNC_ERROR 0x8000A004
ERRCODE_GNSS_CALLBACK_EXISTED
errcode gnss callback existed errcode_gnss_callback_existed gnss_callback_existed
#define ERRCODE_GNSS_CALLBACK_EXISTED 0x8000A005
ERRCODE_GNSS_MESSAGE_TYPE_ERROR
errcode gnss message type error errcode_gnss_message_type_error gnss_message_type_error
#define ERRCODE_GNSS_MESSAGE_TYPE_ERROR 0x8000A006
ERRCODE_GNSS_MESSAGE_LEN_ERROR
errcode gnss message len error errcode_gnss_message_len_error gnss_message_len_error
#define ERRCODE_GNSS_MESSAGE_LEN_ERROR 0x8000A007
ERRCODE_GNSS_MESSAGE_CHKSUM_ERROR
errcode gnss message chksum error errcode_gnss_message_chksum_error gnss_message_chksum_error
#define ERRCODE_GNSS_MESSAGE_CHKSUM_ERROR 0x8000A008
ERRCODE_GNSS_MESSAGE_SEND_TO_DEVICE_FAILED
errcode gnss message send to device failed errcode_gnss_message_send_to_device_failed gnss_message_send_to_device_failed
#define ERRCODE_GNSS_MESSAGE_SEND_TO_DEVICE_FAILED 0x8000A009
ERRCODE_GNSS_MESSAGE_WAIT_FOR_ACK_FAILED
errcode gnss message wait for ack failed errcode_gnss_message_wait_for_ack_failed gnss_message_wait_for_ack_failed
#define ERRCODE_GNSS_MESSAGE_WAIT_FOR_ACK_FAILED 0x8000A00A
ERRCODE_GNSS_CONFIG_ITEM_TYPE_ERROR
errcode gnss config item type error errcode_gnss_config_item_type_error gnss_config_item_type_error
#define ERRCODE_GNSS_CONFIG_ITEM_TYPE_ERROR 0x8000A00B
ERRCODE_GNSS_CONFIG_ITEM_LEN_ERROR
errcode gnss config item len error errcode_gnss_config_item_len_error gnss_config_item_len_error
#define ERRCODE_GNSS_CONFIG_ITEM_LEN_ERROR 0x8000A00C
ERRCODE_GNSS_CONFIG_ITEM_PARA_ERROR
errcode gnss config item para error errcode_gnss_config_item_para_error gnss_config_item_para_error
#define ERRCODE_GNSS_CONFIG_ITEM_PARA_ERROR 0x8000A00D
ERRCODE_GNSS_CONFIG_ITEM_PROC_ERROR
errcode gnss config item proc error errcode_gnss_config_item_proc_error gnss_config_item_proc_error
#define ERRCODE_GNSS_CONFIG_ITEM_PROC_ERROR 0x8000A00E
errcode media invalid param errcode_media_invalid_param media_invalid_param
#define ERRCODE_MEDIA_INVALID_PARAM 0x8000A900
errcode media init fail errcode_media_init_fail media_init_fail
#define ERRCODE_MEDIA_INIT_FAIL 0x8000A901
errcode media err errcode_media_err media_err
#define ERRCODE_MEDIA_ERR 0x8000A902
errcode media permission denied errcode_media_permission_denied media_permission_denied
#define ERRCODE_MEDIA_PERMISSION_DENIED 0x8000A903
errcode media lite player err errcode_media_lite_player_err media_lite_player_err
#define ERRCODE_MEDIA_LITE_PLAYER_ERR 0x8000A904
errcode media lite player no mem errcode_media_lite_player_no_mem media_lite_player_no_mem
#define ERRCODE_MEDIA_LITE_PLAYER_NO_MEM 0x8000A905
errcode media lite player fail errcode_media_lite_player_fail media_lite_player_fail
#define ERRCODE_MEDIA_LITE_PLAYER_FAIL 0x8000A906
errcode media lite player invalid param errcode_media_lite_player_invalid_param media_lite_player_invalid_param
#define ERRCODE_MEDIA_LITE_PLAYER_INVALID_PARAM 0x8000A907
errcode media lite player render fatel errcode_media_lite_player_render_fatel media_lite_player_render_fatel
#define ERRCODE_MEDIA_LITE_PLAYER_RENDER_FATEL 0x8000A908
errcode media lite player invalid pts errcode_media_lite_player_invalid_pts media_lite_player_invalid_pts
#define ERRCODE_MEDIA_LITE_PLAYER_INVALID_PTS 0x8000A909
errcode media lite player render full errcode_media_lite_player_render_full media_lite_player_render_full
#define ERRCODE_MEDIA_LITE_PLAYER_RENDER_FULL 0x8000A90A
errcode media lite player error demux fail errcode_media_lite_player_error_demux_fail media_lite_player_error_demux_fail
#define ERRCODE_MEDIA_LITE_PLAYER_ERROR_DEMUX_FAIL 0x8000A90B
errcode media lite player error audio running err errcode_media_lite_player_error_audio_running_err media_lite_player_error_audio_running_err
#define ERRCODE_MEDIA_LITE_PLAYER_ERROR_AUDIO_RUNNING_ERR 0x8000A90C
errcode media lite player error audio rewind err errcode_media_lite_player_error_audio_rewind_err media_lite_player_error_audio_rewind_err
#define ERRCODE_MEDIA_LITE_PLAYER_ERROR_AUDIO_REWIND_ERR 0x8000A90D
errcode media lite player error eof time out errcode_media_lite_player_error_eof_time_out media_lite_player_error_eof_time_out
#define ERRCODE_MEDIA_LITE_PLAYER_ERROR_EOF_TIME_OUT 0x8000A90E
errcode media audio invalid operation errcode_media_audio_invalid_operation media_audio_invalid_operation
#define ERRCODE_MEDIA_AUDIO_INVALID_OPERATION 0x8000A90F
errcode media audio no init errcode_media_audio_no_init media_audio_no_init
#define ERRCODE_MEDIA_AUDIO_NO_INIT 0x8000A910
errcode media audio no mem errcode_media_audio_no_mem media_audio_no_mem
#define ERRCODE_MEDIA_AUDIO_NO_MEM 0x8000A911
errcode media audio retry read errcode_media_audio_retry_read media_audio_retry_read
#define ERRCODE_MEDIA_AUDIO_RETRY_READ 0x8000A912
errcode media audio dead object errcode_media_audio_dead_object media_audio_dead_object
#define ERRCODE_MEDIA_AUDIO_DEAD_OBJECT 0x8000A913
errcode media audio bad state errcode_media_audio_bad_state media_audio_bad_state
#define ERRCODE_MEDIA_AUDIO_BAD_STATE 0x8000A914
errcode media audio not found active stream errcode_media_audio_not_found_active_stream media_audio_not_found_active_stream
#define ERRCODE_MEDIA_AUDIO_NOT_FOUND_ACTIVE_STREAM 0x8000A915
ERRCODE_SELITEOS_SAFETY_FUNCTION_REFUSE
errcode seliteos safety function refuse errcode_seliteos_safety_function_refuse seliteos_safety_function_refuse
#define ERRCODE_SELITEOS_SAFETY_FUNCTION_REFUSE 0x8000B000