AP_Baro: added units to baro documentation

This commit is contained in:
Andrew Tridgell 2013-06-26 18:32:20 +10:00
parent 3b98bbd159
commit 61361dac9b
1 changed files with 3 additions and 2 deletions

View File

@ -22,15 +22,16 @@ const AP_Param::GroupInfo AP_Baro::var_info[] PROGMEM = {
// @Param: ABS_PRESS
// @DisplayName: Absolute Pressure
// @Description: calibrated ground pressure
// @Description: calibrated ground pressure in Pascals
// @Increment: 1
AP_GROUPINFO("ABS_PRESS", 2, AP_Baro, _ground_pressure, 0),
// @Param: TEMP
// @DisplayName: ground temperature
// @Description: calibrated ground temperature
// @Description: calibrated ground temperature in degrees Celsius
// @Increment: 1
AP_GROUPINFO("TEMP", 3, AP_Baro, _ground_temperature, 0),
AP_GROUPEND
};