Path: blob/master/libraries/AP_Airspeed/AP_Airspeed_Params.cpp
9647 views
1/*2This program is free software: you can redistribute it and/or modify3it under the terms of the GNU General Public License as published by4the Free Software Foundation, either version 3 of the License, or5(at your option) any later version.67This program is distributed in the hope that it will be useful,8but WITHOUT ANY WARRANTY; without even the implied warranty of9MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the10GNU General Public License for more details.1112You should have received a copy of the GNU General Public License13along with this program. If not, see <http://www.gnu.org/licenses/>.14*/1516#include "AP_Airspeed_config.h"1718#if AP_AIRSPEED_ENABLED1920#include "AP_Airspeed.h"2122#include <AP_Vehicle/AP_Vehicle_Type.h>2324// Dummy the AP_Airspeed class to allow building Airspeed only for plane, rover, sub, and copter & heli 2MB boards25// This could be removed once the build system allows for APM_BUILD_TYPE in header files26// note that this is re-definition of the one in AP_Airspeed.cpp, can't be shared as vehicle dependences cant go in header files27#ifndef AP_AIRSPEED_DUMMY_METHODS_ENABLED28#define AP_AIRSPEED_DUMMY_METHODS_ENABLED ((APM_BUILD_COPTER_OR_HELI && HAL_PROGRAM_SIZE_LIMIT_KB <= 1024) || \29APM_BUILD_TYPE(APM_BUILD_AntennaTracker) || APM_BUILD_TYPE(APM_BUILD_Blimp))30#endif3132#if !AP_AIRSPEED_DUMMY_METHODS_ENABLED3334#ifndef PSI_RANGE_DEFAULT35#define PSI_RANGE_DEFAULT 1.0f36#endif3738// table of user settable parameters39const AP_Param::GroupInfo AP_Airspeed_Params::var_info[] = {4041// @Param: TYPE42// @DisplayName: Airspeed type43// @Description: Type of airspeed sensor44// @Values: 0:None,1:I2C-MS4525D0,2:Analog,3:I2C-MS5525,4:I2C-MS5525 (0x76),5:I2C-MS5525 (0x77),6:I2C-SDP3X,7:I2C-DLVR-5in,8:DroneCAN,9:I2C-DLVR-10in,10:I2C-DLVR-20in,11:I2C-DLVR-30in,12:I2C-DLVR-60in,13:NMEA water speed,14:MSP,15:ASP5033,16:ExternalAHRS,17:AUAV-10in,18:AUAV-5in,19:AUAV-30in,100:SITL45// @User: Standard46AP_GROUPINFO_FLAGS("TYPE", 1, AP_Airspeed_Params, type, 0, AP_PARAM_FLAG_ENABLE),4748#ifndef HAL_BUILD_AP_PERIPH49// @Param: USE50// @DisplayName: Airspeed use51// @Description: Enables airspeed use for automatic throttle modes and replaces control from THR_TRIM. Continues to display and log airspeed if set to 0. Uses airspeed for control if set to 1. Only uses airspeed when throttle = 0 if set to 2 (useful for gliders with airspeed sensors behind propellers).52// @Description{Copter, Blimp, Rover, Sub}: This parameter is not used by this vehicle. Always set to 0.53// @Values: 0:DoNotUse,1:Use,2:UseWhenZeroThrottle54// @User: Standard55AP_GROUPINFO("USE", 2, AP_Airspeed_Params, use, 0),5657// @Param: OFFSET58// @DisplayName: Airspeed offset59// @Description: Airspeed calibration offset60// @Increment: 0.161// @User: Advanced62AP_GROUPINFO("OFFSET", 3, AP_Airspeed_Params, offset, 0),6364// @Param: RATIO65// @DisplayName: Airspeed ratio66// @Description: Calibrates pitot tube pressure to velocity. Increasing this value will indicate a higher airspeed at any given dynamic pressure.67// @Increment: 0.168// @User: Advanced69AP_GROUPINFO("RATIO", 4, AP_Airspeed_Params, ratio, 2),7071// @Param: PIN72// @DisplayName: Airspeed pin73// @Description: The pin number that the airspeed sensor is connected to for analog sensors. Values for some autopilots are given as examples. Search wiki for "Analog pins".74// @Values: -1:Disabled, 2:Pixhawk/Pixracer/Navio2/Pixhawk2_PM1, 5:Navigator, 13:Pixhawk2_PM2/CubeOrange_PM2, 14:CubeOrange, 16:Durandal, 100:PX4-v175// @Range: -1 12776// @User: Advanced77AP_GROUPINFO("PIN", 5, AP_Airspeed_Params, pin, 0),78#endif // HAL_BUILD_AP_PERIPH7980#if AP_AIRSPEED_AUTOCAL_ENABLE81// @Param: AUTOCAL82// @DisplayName: Automatic airspeed ratio calibration83// @DisplayName{Copter, Blimp, Rover, Sub}: This parameter and function is not used by this vehicle. Always set to 0.84// @Description: Enables automatic adjustment of airspeed ratio during a calibration flight based on estimation of ground speed and true airspeed. New ratio saved every 2 minutes if change is > 5%. Should not be left enabled.85// @User: Advanced86AP_GROUPINFO("AUTOCAL", 6, AP_Airspeed_Params, autocal, 0),87#endif8889#ifndef HAL_BUILD_AP_PERIPH90// @Param: TUBE_ORDR91// @DisplayName: Control pitot tube order92// @Description: This parameter allows you to control whether the order in which the tubes are attached to your pitot tube matters. If you set this to 0 then the first (often the top) connector on the sensor needs to be the stagnation pressure (the pressure at the tip of the pitot tube). If set to 1 then the second (often the bottom) connector needs to be the stagnation pressure. If set to 2 (the default) then the airspeed driver will accept either order. The reason you may wish to specify the order is it will allow your airspeed sensor to detect if the aircraft is receiving excessive pressure on the static port compared to the stagnation port such as during a stall, which would otherwise be seen as a positive airspeed.93// @User: Advanced94// @Values: 0:Normal,1:Swapped,2:Auto Detect95AP_GROUPINFO("TUBE_ORDR", 7, AP_Airspeed_Params, tube_order, 2),9697// @Param: SKIP_CAL98// @DisplayName: Skip airspeed offset calibration on startup99// @Description: This parameter allows you to skip airspeed offset calibration on startup, instead using the offset from the last calibration or requiring a manual calibration. This may be desirable if the offset variance between flights for your sensor is low and you want to avoid having to cover the pitot tube on each boot.100// @Values: 0:Disable101// @Values: 1:Do not require offset calibration before flight. Manual calibration should be performed during initial setup.102// @Values: 2:Do not calibrate on start up. Manual calibration must be performed once per boot.103// @User: Advanced104AP_GROUPINFO("SKIP_CAL", 8, AP_Airspeed_Params, skip_cal, 0),105#endif // HAL_BUILD_AP_PERIPH106107// @Param: PSI_RANGE108// @DisplayName: The PSI range of the device109// @Description: This parameter allows you to set the PSI (pounds per square inch) range for your sensor. You should not change this unless you examine the datasheet for your device110// @User: Advanced111AP_GROUPINFO("PSI_RANGE", 9, AP_Airspeed_Params, psi_range, PSI_RANGE_DEFAULT),112113#ifndef HAL_BUILD_AP_PERIPH114// @Param: BUS115// @DisplayName: Airspeed I2C bus116// @Description: Bus number of the I2C bus where the airspeed sensor is connected. May not correspond to board's I2C bus number labels. Retry another bus and reboot if airspeed sensor fails to initialize.117// @Values: 0:Bus0,1:Bus1,2:Bus2,3:Bus3118// @RebootRequired: True119// @User: Advanced120AP_GROUPINFO("BUS", 10, AP_Airspeed_Params, bus, 1),121#endif // HAL_BUILD_AP_PERIPH122123// @Param: DEVID124// @DisplayName: Airspeed ID125// @Description: Airspeed sensor ID, taking into account its type, bus and instance126// @ReadOnly: True127// @User: Advanced128AP_GROUPINFO_FLAGS("DEVID", 11, AP_Airspeed_Params, bus_id, 0, AP_PARAM_FLAG_INTERNAL_USE_ONLY),129130AP_GROUPEND131};132133AP_Airspeed_Params::AP_Airspeed_Params(void)134{135AP_Param::setup_object_defaults(this, var_info);136}137138#else // dummy implementation:139140AP_Airspeed_Params::AP_Airspeed_Params(void) {};141const AP_Param::GroupInfo AP_Airspeed_Params::var_info[] = { AP_GROUPEND };142143#endif144145#endif // AP_AIRSPEED_ENABLED146147148