Merge pull request #2 from abraha2d/development

Some more runtime error fixes
pull/1/head
Emil Borconi-Szedressy 2019-07-10 23:44:34 +01:00 committed by GitHub
commit df25ec907d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 7 deletions

View File

@ -23,7 +23,7 @@ package f1x.aasdk.proto.messages;
message AVInputOpenRequest
{
required bool open = 1;
required bool anc = 2;
required bool ec = 3;
required int32 max_unacked = 4;
optional bool anc = 2;
optional bool ec = 3;
optional int32 max_unacked = 4;
}

View File

@ -28,6 +28,5 @@ message InputChannelMessage
INPUT_EVENT_INDICATION = 0x8001;
BINDING_REQUEST = 0x8002;
BINDING_RESPONSE = 0x8003;
}
}

View File

@ -27,7 +27,7 @@ message TouchAction
PRESS = 0;
RELEASE = 1;
DRAG = 2;
POINTER_DOWN=5;
POINTER_UP=6;
POINTER_DOWN = 5;
POINTER_UP = 6;
}
}

View File

@ -26,6 +26,6 @@ package f1x.aasdk.proto.data;
message TouchEvent
{
repeated data.TouchLocation touch_location = 1;
required uint32 action_index = 2;
optional uint32 action_index = 2;
required enums.TouchAction.Enum touch_action = 3;
}