Updated channels

Added 2 more channels.
pull/1/head
Emil Borconi-Szedressy 2019-04-08 12:48:07 +01:00 committed by GitHub
parent 046b3b3815
commit 516a98c348
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 42 additions and 1 deletions

View File

@ -18,6 +18,8 @@
syntax="proto3";
option optimize_for=SPEED;
import "SensorChannelData.proto";
import "AVChannelData.proto";
import "InputChannelData.proto";
@ -25,8 +27,15 @@ import "AVInputChannelData.proto";
import "BluetoothChannelData.proto";
import "NavigationChannelData.proto";
import "VendorExtensionChannelData.proto";
import "WifiChannelData.proto";
package f1x.aasdk.proto.data;
package gb.xxy.hr.proto.data;
message MediaPlayBackChannel
{
uint32 enabled = 1;
}
message ChannelDescriptor
{
@ -37,5 +46,7 @@ message ChannelDescriptor
AVInputChannel av_input_channel = 5;
BluetoothChannel bluetooth_channel = 6;
NavigationChannel navigation_channel = 8;
MediaPlayBackChannel mediainfo_channel = 9;
VendorExtensionChannel vendor_extension_channel = 12;
WifiChannel wifi_channel=16;
}

View File

@ -0,0 +1,30 @@
/*
* This file is part of aasdk library project.
* Copyright (C) 2018 f1x.studio (Michal Szwaj)
*
* aasdk is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
* aasdk is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with aasdk. If not, see <http://www.gnu.org/licenses/>.
*/
syntax="proto3";
option optimize_for=SPEED;
package gb.xxy.hr.proto.data;
message WifiChannel
{
string ssid = 1;
}