-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
namespace SmartA2.Net; | ||
|
||
/// <summary>错误代码</summary> | ||
public enum ErrorCodes : UInt16 | ||
{ | ||
/// <summary>成功</summary> | ||
Success = 0, | ||
|
||
Fail = 1, | ||
Check warning on line 9 in SmartA2/Net/ErrorCodes.cs GitHub Actions / build-publish
|
||
|
||
执行过程信息输出 = 5, | ||
Check warning on line 11 in SmartA2/Net/ErrorCodes.cs GitHub Actions / build-publish
|
||
|
||
参数错误 = 10, | ||
Check warning on line 13 in SmartA2/Net/ErrorCodes.cs GitHub Actions / build-publish
|
||
|
||
当前模式错误 = 11, | ||
Check warning on line 15 in SmartA2/Net/ErrorCodes.cs GitHub Actions / build-publish
|
||
|
||
Busy = 12, | ||
Check warning on line 17 in SmartA2/Net/ErrorCodes.cs GitHub Actions / build-publish
|
||
|
||
模块复位中 = 13, | ||
Check warning on line 19 in SmartA2/Net/ErrorCodes.cs GitHub Actions / build-publish
|
||
|
||
无此命令 = 20, | ||
Check warning on line 21 in SmartA2/Net/ErrorCodes.cs GitHub Actions / build-publish
|
||
} |