[sensor] set power and accuracy as the hightest level

This commit is contained in:
Meco Man 2022-12-23 23:00:26 -05:00 committed by Man, Jianting (Meco)
parent 40a24806f9
commit d3c77d907f
1 changed files with 5 additions and 0 deletions

View File

@ -493,5 +493,10 @@ int rt_hw_sensor_register(rt_sensor_t sensor,
LOG_I("sensor[%s] init success", device_name); LOG_I("sensor[%s] init success", device_name);
rt_free(device_name); rt_free(device_name);
/* set sensor accuracy and power as the hightest */
rt_device_control(device, RT_SENSOR_CTRL_SET_ACCURACY_MODE, RT_SENSOR_MODE_ACCURACY_HIGHEST);
rt_device_control(device, RT_SENSOR_CTRL_SET_POWER_MODE, RT_SENSOR_MODE_POWER_HIGHEST);
return RT_EOK; return RT_EOK;
} }