You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
279 B
12 lines
279 B
#pragma once
|
|
|
|
typedef enum {
|
|
kerr_noerror = 0,
|
|
kerr_overtime = 1,
|
|
kerr_invalid_param = 2,
|
|
kerr_invalid_param_num = 3,
|
|
kerr_subdevice_offline = 4,
|
|
kerr_function_not_support = 5,
|
|
kerr_function_not_support = 5,
|
|
} public_ecode_t;
|
|
|