vehicle_prop_config 结构体参考

vehicle_prop_config 结构体参考

#include < vehicle.h >

数据字段

int32_t  属性
 
int32_t  访问
 
int32_t  change_mode
 
int32_t  value_type
 
int32_t  permission_model
 
union {
   int32_t    vehicle_zone_flags
 
   int32_t    vehicle_seat_flags
 
   int32_t    vehicle_window_flags
 
}; 
 
union {
   int32_t    config_flags
 
   int32_t    vehicle_radio_num_presets
 
   int32_t    config_array [4]
 
}; 
 
vehicle_str_t config_string
 
union {
   float    float_min_value
 
   int32_t    int32_min_value
 
   int64_t    int64_min_value
 
}; 
 
union {
   float    float_max_value
 
   int32_t    int32_max_value
 
   int64_t    int64_max_value
 
}; 
 
union {
   float *    float_min_values
 
   int32_t *    int32_min_values
 
   int64_t *    int64_min_values
 
}; 
 
union {
   float *    float_max_values
 
   int32_t *    int32_max_values
 
   int64_t *    int64_max_values
 
}; 
 
浮点数 min_sample_rate
 
浮点数 max_sample_rate
 
void *  hal_data
 

详细说明

定义位于文件 vehicle.h 1319 行。

字段文档

union { ... }

为该属性指定允许的最小值。对于没有指定枚举的属性,这是必需的。

union { ... }

为该属性指定允许的最大值。对于没有指定枚举的属性,这是必需的。

union { ... }

分区地产的最小值数组。分区属性可以通过两种不同的方式指定最小值 / 最大值:

  1. 所有具有相同最小值 / 最大值的区域:应设置 *_min/max_value,并将此数组设置为 NULL。
  2. 具有单独最小值 / 最大值的所有区域:应填充 *_min/max_values 数组,并且其长度应与 *_zone_flags 指定的有效区域数相同。

如果每个可用区没有单独的最大值,则应为 NULL。

union { ... }

分区地产的最大值数组。如需了解其用法,请参阅上文。如果每个可用区没有单独的最大值,则应为 NULL。如果不为 NULL,数组长度应与 min_values 的长度一致。

union { ... }

某些房源可能具有关联的区域(例如 HVAC),在这种情况下,配置应包含关联区域的 OR 值。

union { ... }

媒体资源专用配置信息。此属性的使用方式将按媒体资源进行定义。

int32_t access

定义属性是读取还是写入。值应为枚举 vehicle_prop_access 中的某个值。

定义位于文件 vehicle.h 1326 行

int32_t change_mode

定义属性是持续监控还是变化时监控。值应为枚举 vehicle_prop_change_mode 之一。

定义位于文件 vehicle.h 1332 行。

int32_t config_array[4]

定义位于文件 vehicle.h 1373 行。

int32_t config_flags

如需了解常规配置信息

定义位于文件 vehicle.h 1367 行。

vehicle_str_t config_string

某些媒体资源可能需要通过此字符串传递额外信息。大多数媒体资源不需要设置此属性,在这种情况下,config_string.data 应为 NULL,config_string.len 应为 0。

定义位于文件 vehicle.h 1381 行

float float_max_value

定义位于文件 vehicle.h 1398 行。

float* float_max_values

定义位于文件 vehicle.h 1425 行

float float_min_value

定义位于文件 vehicle.h 1388 行

float* float_min_values

定义位于文件 vehicle.h 1414 行

void* hal_data

用于放置 HAL 实现专用数据的占位符。使用完全取决于 HAL 实现。

定义位于文件 vehicle.h 1442 行。

int32_t int32_max_value

定义位于文件 vehicle.h 1399 行

int32_t* int32_max_values

定义位于文件 vehicle.h 1426 行

int32_t int32_min_value

定义位于文件 vehicle.h 1389 行。

int32_t* int32_min_values

定义位于文件 vehicle.h 1415 行。

int64_t int64_max_value

定义位于文件 vehicle.h 1400 行。

int64_t* int64_max_values

定义位于文件 vehicle.h 1427 行

int64_t int64_min_value

定义位于文件 vehicle.h 1390 行。

int64_t* int64_min_values

定义位于文件 vehicle.h 1416 行

float max_sample_rate

采样率上限(以 Hz 为单位)。如果传感器类型为 VEHICLE_PROP_CHANGE_MODE_ON_CHANGE,则应为 0

定义位于文件 vehicle.h 1437 行

float min_sample_rate

最小采样率(以 Hz 为单位)。对于传感器类型为 VEHICLE_PROP_CHANGE_MODE_ON_CHANGE 时,应为 0

定义位于文件 vehicle.h 1433 行

int32_t permission_model

定义访问数据所需的权限模型。

定义位于文件 vehicle.h 1343 行

int32_t prop

定义位于文件 vehicle.h 1320 行。

int32_t value_type

此属性所用的数据类型。此类型因媒体资源而异。请检查 vehicle_value_type 是否为允许的值。

定义位于文件 vehicle.h 1338 行

int32_t vehicle_radio_num_presets

由无线电模块存储的预设数量。如果没有可用的预设,请传递 0。预设的范围定义为 1(请参阅 VEHICLE_RADIO_PRESET_MIN_VALUE)到 vehicle_radio_num_presets。

定义位于文件 vehicle.h 1372 行。

int32_t vehicle_seat_flags

该值是通过对一个或多个枚举 vehicle_seat 成员进行 OR 运算派生的。

定义位于文件 vehicle.h 1355 行。

int32_t vehicle_window_flags

该值是通过对一个或多个枚举 vehicle_window 成员进行 OR 运算派生的。

定义位于文件 vehicle.h 1357 行。

int32_t vehicle_zone_flags

该值是通过对一个或多个枚举 vehicle_zone 成员进行 OR 运算派生的。

定义位于文件 vehicle.h 1353 行。


此结构体的文档是根据以下文件生成的: