Adding a property for a communicating Vehicle Maps Data Service messages.

The message will be a protobuf preceded by a some routing data, so using
Bytes as type until hybrid types are supported.

Test: it compiles

Change-Id: If98ae0b842b455648e980a474a07a2cee51ef382
This commit is contained in:
asafro
2016-12-21 10:23:34 -08:00
parent 7f6bfcc606
commit 804864f3bf

View File

@@ -1614,6 +1614,20 @@ enum VehicleProperty: int32_t {
| VehiclePropertyGroup:SYSTEM
| VehiclePropertyType:BOOLEAN
| VehicleArea:GLOBAL),
/*
* Vehicle Maps Data Service
*
* A VMDS message.
*
* @change_mode VehiclePropertyChangeMode:ON_CHANGE
* @access VehiclePropertyAccess:READ_WRITE
*/
VEHICLE_MAPS_DATA_SERVICE = (
0x0C00
| VehiclePropertyGroup:SYSTEM
| VehiclePropertyType:BYTES
| VehicleArea:GLOBAL),
};
/*