feat: add hrp code DeviceConfigureError

This commit is contained in:
lilong.129
2024-09-29 15:26:02 +08:00
parent bdaf341dd3
commit 7c92f23bf4
2 changed files with 3 additions and 1 deletions

View File

@@ -67,6 +67,7 @@ var (
DeviceHTTPDriverError = errors.New("device HTTP driver error") // 51
DeviceUSBDriverError = errors.New("device USB driver error") // 52
DeviceGetInfoError = errors.New("device get info error") // 60
DeviceConfigureError = errors.New("device configure error") // 61
DeviceShellExecError = errors.New("device shell exec error") // 62
DeviceOfflineError = errors.New("device offline") // 63
DeviceScreenShotError = errors.New("device screenshot error") // 65
@@ -159,6 +160,7 @@ var errorsMap = map[error]int{
DeviceHTTPDriverError: 51,
DeviceUSBDriverError: 52,
DeviceGetInfoError: 60,
DeviceConfigureError: 61,
DeviceShellExecError: 62,
DeviceOfflineError: 63,
DeviceScreenShotError: 65,

View File

@@ -1 +1 @@
v5.0.0-beta-2409271505
v5.0.0-beta-2409291526