Add Undefined and Mixed state for use in SDK

This commit is contained in:
Alexey Rybalchenko
2020-07-14 12:23:16 +02:00
parent ba3a82b1df
commit a6da208e79
7 changed files with 79 additions and 23 deletions

View File

@@ -20,6 +20,7 @@ namespace mq
enum class State : int
{
Undefined = 0,
Ok,
Error,
Idle,
@@ -39,7 +40,7 @@ enum class State : int
enum class Transition : int
{
Auto,
Auto = 0,
InitDevice,
CompleteInit,
Bind,