mirror of https://github.com/ArduPilot/ardupilot
AP_Periph: rename AP_PERIPH_<feature>_DEFAULT to HAL_PERIPH_<feature>_DEFAULT
This commit is contained in:
parent
80b3c2491f
commit
71859c9893
|
@ -2,16 +2,16 @@
|
||||||
|
|
||||||
extern const AP_HAL::HAL &hal;
|
extern const AP_HAL::HAL &hal;
|
||||||
|
|
||||||
#ifndef AP_PERIPH_LED_BRIGHT_DEFAULT
|
#ifndef HAL_PERIPH_LED_BRIGHT_DEFAULT
|
||||||
#define AP_PERIPH_LED_BRIGHT_DEFAULT 100
|
#define HAL_PERIPH_LED_BRIGHT_DEFAULT 100
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef AP_PERIPH_RANGEFINDER_BAUDRATE_DEFAULT
|
#ifndef HAL_PERIPH_RANGEFINDER_BAUDRATE_DEFAULT
|
||||||
#define AP_PERIPH_RANGEFINDER_BAUDRATE_DEFAULT 115200
|
#define HAL_PERIPH_RANGEFINDER_BAUDRATE_DEFAULT 115200
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef AP_PERIPH_RANGEFINDER_PORT_DEFAULT
|
#ifndef HAL_PERIPH_RANGEFINDER_PORT_DEFAULT
|
||||||
#define AP_PERIPH_RANGEFINDER_PORT_DEFAULT 3
|
#define HAL_PERIPH_RANGEFINDER_PORT_DEFAULT 3
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef HAL_PERIPH_GPS_PORT_DEFAULT
|
#ifndef HAL_PERIPH_GPS_PORT_DEFAULT
|
||||||
|
@ -99,7 +99,7 @@ const AP_Param::Info AP_Periph_FW::var_info[] = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef AP_PERIPH_HAVE_LED
|
#ifdef AP_PERIPH_HAVE_LED
|
||||||
GSCALAR(led_brightness, "LED_BRIGHTNESS", AP_PERIPH_LED_BRIGHT_DEFAULT),
|
GSCALAR(led_brightness, "LED_BRIGHTNESS", HAL_PERIPH_LED_BRIGHT_DEFAULT),
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAL_PERIPH_ENABLE_AIRSPEED
|
#ifdef HAL_PERIPH_ENABLE_AIRSPEED
|
||||||
|
@ -110,8 +110,8 @@ const AP_Param::Info AP_Periph_FW::var_info[] = {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAL_PERIPH_ENABLE_RANGEFINDER
|
#ifdef HAL_PERIPH_ENABLE_RANGEFINDER
|
||||||
GSCALAR(rangefinder_baud, "RNGFND_BAUDRATE", AP_PERIPH_RANGEFINDER_BAUDRATE_DEFAULT),
|
GSCALAR(rangefinder_baud, "RNGFND_BAUDRATE", HAL_PERIPH_RANGEFINDER_BAUDRATE_DEFAULT),
|
||||||
GSCALAR(rangefinder_port, "RNGFND_PORT", AP_PERIPH_RANGEFINDER_PORT_DEFAULT),
|
GSCALAR(rangefinder_port, "RNGFND_PORT", HAL_PERIPH_RANGEFINDER_PORT_DEFAULT),
|
||||||
|
|
||||||
// Rangefinder driver
|
// Rangefinder driver
|
||||||
// @Group: RNGFND
|
// @Group: RNGFND
|
||||||
|
|
Loading…
Reference in New Issue