Browse Source

添加新的错误码信息

master
zhaohe 12 months ago
parent
commit
330c5b6d61
  1. 11
      transmit_disfection_protocol.hpp

11
transmit_disfection_protocol.hpp

@ -91,6 +91,14 @@ typedef enum {
kerr_motor_undervoltage_error = 103, kerr_motor_undervoltage_error = 103,
kerr_motor_unkown_error = 104, kerr_motor_unkown_error = 104,
kerr_motor_overtemperature_flag = 105,
kerr_motor_overtemperature_pre_warning_flag = 106,
kerr_motor_short_to_ground_indicator_phase_A = 107,
kerr_motor_short_to_ground_indicator_phase_B = 108,
kerr_motor_open_load_indicator_phase_A = 109,
kerr_motor_open_load_indicator_phase_B = 110,
kerr_motor_standstill_indicator = 111,
kerr_AirBlowerError = 200, // 空压机异常 kerr_AirBlowerError = 200, // 空压机异常
kerr_HeaterError = 201, // 加热片异常 kerr_HeaterError = 201, // 加热片异常
kerr_BlowerError = 202, // 鼓风机异常 kerr_BlowerError = 202, // 鼓风机异常
@ -229,7 +237,7 @@ typedef enum {
* * * *
***********************************************************************************************************************/ ***********************************************************************************************************************/
kfn_air_leak_detect_test_set_mode = 1500, // 气密性测试-气密性测试模式 {1:mode} kfn_air_leak_detect_test_set_mode = 1500, // 气密性测试-气密性测试模式 {1:mode}
kfn_air_tightness_test_get_mode = 1501, // 气密性测试-封闭通道
kfn_air_tightness_test_get_mode = 1501, // 气密性测试-封闭通道
kfn_ext_ch_selector_set_ch = 1600, // 外部通道选择器设置通道 kfn_ext_ch_selector_set_ch = 1600, // 外部通道选择器设置通道
kfn_ext_ch_selector_get_ch = 1601, // 读取当前通道 kfn_ext_ch_selector_get_ch = 1601, // 读取当前通道
@ -340,6 +348,7 @@ typedef struct {
typedef struct { typedef struct {
uint32_t ecode; uint32_t ecode;
uint16_t subid; uint16_t subid;
uint32_t detailinfo;
} report_exeception_data_t; } report_exeception_data_t;
#if 1 #if 1

Loading…
Cancel
Save