1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-19 06:15:16 +03:00

Renamed 'parameter_group' to 'pg'.

This commit is contained in:
mikeller 2017-12-19 23:36:31 +13:00
parent b924ac0c9c
commit b489d0ba9d
144 changed files with 226 additions and 225 deletions

View file

@ -85,7 +85,7 @@ blackbox_encoding_unittest_SRC := \
cli_unittest_SRC := \
$(USER_DIR)/interface/cli.c \
$(USER_DIR)/config/feature.c \
$(USER_DIR)/config/parameter_group.c \
$(USER_DIR)/pg/pg.c \
$(USER_DIR)/common/typeconversion.c
cli_unittest_DEFINES := \
@ -163,13 +163,13 @@ osd_unittest_DEFINES := \
USE_RTC_TIME
parameter_groups_unittest_SRC := \
$(USER_DIR)/config/parameter_group.c
pg_unittest_SRC := \
$(USER_DIR)/pg/pg.c
rc_controls_unittest_SRC := \
$(USER_DIR)/fc/rc_controls.c \
$(USER_DIR)/config/parameter_group.c \
$(USER_DIR)/pg/pg.c \
$(USER_DIR)/common/bitarray.c \
$(USER_DIR)/common/maths.c \
$(USER_DIR)/fc/rc_adjustments.c \
@ -343,7 +343,7 @@ CXX_FLAGS += $(COVERAGE_FLAGS)
ifdef MACOSX
LDFLAGS += -Wl,-map,$(OBJECT_DIR)/$@.map
else
LDFLAGS += -Wl,-T,$(TEST_DIR)/parameter_group.ld -Wl,-Map,$(OBJECT_DIR)/$@.map
LDFLAGS += -Wl,-T,$(TEST_DIR)/pg.ld -Wl,-Map,$(OBJECT_DIR)/$@.map
endif
# Gather up all of the tests.

View file

@ -21,8 +21,8 @@ extern "C" {
#include "blackbox/blackbox.h"
#include "build/debug.h"
#include "common/maths.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "fc/config.h"
#include "fc/controlrate_profile.h"
#include "fc/fc_core.h"

View file

@ -24,8 +24,8 @@ extern "C" {
#include "blackbox/blackbox_encoding.h"
#include "common/utils.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "drivers/serial.h"
#include "io/serial.h"

View file

@ -23,8 +23,8 @@ extern "C" {
#include "blackbox/blackbox.h"
#include "common/utils.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "drivers/accgyro/accgyro.h"
#include "drivers/accgyro/gyro_sync.h"

View file

@ -27,9 +27,9 @@ extern "C" {
#include "platform.h"
#include "target.h"
#include "build/version.h"
#include "config/parameter_group.h"
#include "pg/pg.h"
#include "config/feature.h"
#include "config/parameter_group_ids.h"
#include "pg/pg_ids.h"
#include "drivers/buf_writer.h"
#include "drivers/vtx_common.h"
#include "fc/config.h"

View file

@ -23,7 +23,7 @@
extern "C" {
#include "build/debug.h"
#include "config/parameter_group_ids.h"
#include "pg/pg_ids.h"
#include "platform.h"

View file

@ -27,7 +27,7 @@ extern "C" {
#include "common/maths.h"
#include "config/feature.h"
#include "config/parameter_group_ids.h"
#include "pg/pg_ids.h"
#include "drivers/accgyro/accgyro.h"
#include "drivers/compass/compass.h"

View file

@ -27,7 +27,7 @@ extern "C" {
#include "common/axis.h"
#include "common/color.h"
#include "config/parameter_group_ids.h"
#include "pg/pg_ids.h"
#include "drivers/io.h"
#include "drivers/light_ws2811strip.h"

View file

@ -27,7 +27,7 @@ extern "C" {
#include "blackbox/blackbox.h"
#include "config/parameter_group_ids.h"
#include "pg/pg_ids.h"
#include "common/time.h"

View file

@ -24,8 +24,8 @@
extern "C" {
#include <platform.h>
#include "build/debug.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "flight/mixer.h"

View file

@ -27,8 +27,8 @@ extern "C" {
#include "common/axis.h"
#include "common/bitarray.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "blackbox/blackbox.h"
#include "blackbox/blackbox_fielddefs.h"

View file

@ -30,8 +30,8 @@ extern "C" {
#include "common/utils.h"
#include "common/streambuf.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "fc/rc_controls.h"
#include "fc/rc_modes.h"

View file

@ -26,8 +26,8 @@ extern "C" {
#include "build/debug.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "common/crc.h"
#include "common/utils.h"

View file

@ -19,7 +19,7 @@
extern "C" {
#include <platform.h>
#include "config/parameter_group.h"
#include "pg/pg.h"
#include "drivers/serial.h"
#include "drivers/time.h"
#include "io/serial.h"

View file

@ -25,7 +25,7 @@ extern "C" {
#include "drivers/io.h"
#include "common/maths.h"
#include "config/parameter_group_ids.h"
#include "pg/pg_ids.h"
#include "fc/rc_controls.h"
#include "fc/rc_modes.h"
#include "rx/rx.h"

View file

@ -29,8 +29,8 @@ extern "C" {
#include "common/maths.h"
#include "common/utils.h"
#include "config/feature.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "io/beeper.h"
boxBitmask_t rcModeActivationMask;

View file

@ -35,8 +35,8 @@ extern "C" {
#include "common/streambuf.h"
#include "common/typeconversion.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "drivers/nvic.h"
#include "drivers/serial.h"

View file

@ -34,8 +34,8 @@ extern "C" {
#include "common/printf.h"
#include "common/typeconversion.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "drivers/serial.h"
#include "drivers/system.h"

View file

@ -29,8 +29,8 @@ extern "C" {
#include "common/axis.h"
#include "common/gps_conversion.h"
#include "config/parameter_group.h"
#include "config/parameter_group_ids.h"
#include "pg/pg.h"
#include "pg/pg_ids.h"
#include "drivers/system.h"
#include "drivers/serial.h"

View file

@ -21,7 +21,7 @@
extern "C" {
#include <platform.h>
#include "common/utils.h"
#include "config/parameter_group.h"
#include "pg/pg.h"
#include "drivers/serial.h"
#include "io/serial.h"
#include "fc/rc_controls.h"