From 516a98c3480e1a381ace9106d29c6086ec77b040 Mon Sep 17 00:00:00 2001 From: Emil Borconi-Szedressy Date: Mon, 8 Apr 2019 12:48:07 +0100 Subject: [PATCH] Updated channels Added 2 more channels. --- aasdk_proto/ChannelDescriptorData.proto | 13 ++++++++++- aasdk_proto/WifiChannelData.proto | 30 +++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 aasdk_proto/WifiChannelData.proto diff --git a/aasdk_proto/ChannelDescriptorData.proto b/aasdk_proto/ChannelDescriptorData.proto index c167c28..2fd5ba7 100644 --- a/aasdk_proto/ChannelDescriptorData.proto +++ b/aasdk_proto/ChannelDescriptorData.proto @@ -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; } diff --git a/aasdk_proto/WifiChannelData.proto b/aasdk_proto/WifiChannelData.proto new file mode 100644 index 0000000..f6ae78b --- /dev/null +++ b/aasdk_proto/WifiChannelData.proto @@ -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 . +*/ + +syntax="proto3"; + +option optimize_for=SPEED; + + + +package gb.xxy.hr.proto.data; + +message WifiChannel +{ + string ssid = 1; +} \ No newline at end of file