mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-03-01 18:29:16 +01:00
Changed DIAGNOSTICS flag to be individual to each module instead of global.
The upshot is the stack usage monitor can be turned on at a lower RAM threshold.
This commit is contained in:
parent
c47c8c373d
commit
f2ffd1fb99
@ -38,9 +38,13 @@ OUTDIR := $(TOP)/build/$(TARGET)
|
|||||||
DEBUG ?= NO
|
DEBUG ?= NO
|
||||||
|
|
||||||
# Include objects that are just nice information to show
|
# Include objects that are just nice information to show
|
||||||
DIAGNOSTICS ?= NO
|
STACK_DIAGNOSTICS ?= NO
|
||||||
|
MIXERSTATUS_DIAGNOSTICS ?= NO
|
||||||
|
RATEDESIRED_DIAGNOSTICS ?= NO
|
||||||
|
I2C_WDG_STATS_DIAGNOSTICS ?= NO
|
||||||
DIAG_TASKS ?= NO
|
DIAG_TASKS ?= NO
|
||||||
|
|
||||||
|
|
||||||
# Set to YES to build a FW version that will erase all flash memory
|
# Set to YES to build a FW version that will erase all flash memory
|
||||||
ERASE_FLASH ?= NO
|
ERASE_FLASH ?= NO
|
||||||
# Set to YES to use the Servo output pins for debugging via scope or logic analyser
|
# Set to YES to use the Servo output pins for debugging via scope or logic analyser
|
||||||
@ -474,8 +478,20 @@ ifeq ($(DEBUG),YES)
|
|||||||
CFLAGS += -DDEBUG
|
CFLAGS += -DDEBUG
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(DIAGNOSTICS),YES)
|
ifeq ($(STACK_DIAGNOSTICS),YES)
|
||||||
CFLAGS += -DDIAGNOSTICS
|
CFLAGS += -DSTACK_DIAGNOSTICS
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(MIXERSTATUS_DIAGNOSTICS),YES)
|
||||||
|
CFLAGS += -DMIXERSTATUS_DIAGNOSTICS
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(RATEDESIRED_DIAGNOSTICS),YES)
|
||||||
|
CFLAGS += -DRATEDESIRED_DIAGNOSTICS
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(I2C_WDG_STATS_DIAGNOSTICS),YES)
|
||||||
|
CFLAGS += -DI2C_WDG_STATS_DIAGNOSTICS
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(DIAG_TASKS),YES)
|
ifeq ($(DIAG_TASKS),YES)
|
||||||
|
@ -126,7 +126,7 @@ int32_t ActuatorInitialize()
|
|||||||
// Primary output of this module
|
// Primary output of this module
|
||||||
ActuatorCommandInitialize();
|
ActuatorCommandInitialize();
|
||||||
|
|
||||||
#if defined(DIAGNOSTICS)
|
#if defined(MIXERSTATUS_DIAGNOSTICS)
|
||||||
// UAVO only used for inspecting the internal status of the mixer during debug
|
// UAVO only used for inspecting the internal status of the mixer during debug
|
||||||
MixerStatusInitialize();
|
MixerStatusInitialize();
|
||||||
#endif
|
#endif
|
||||||
@ -212,7 +212,7 @@ static void actuatorTask(void* parameters)
|
|||||||
ActuatorDesiredGet(&desired);
|
ActuatorDesiredGet(&desired);
|
||||||
ActuatorCommandGet(&command);
|
ActuatorCommandGet(&command);
|
||||||
|
|
||||||
#if defined(DIAGNOSTICS)
|
#if defined(MIXERSTATUS_DIAGNOSTICS)
|
||||||
MixerStatusGet(&mixerStatus);
|
MixerStatusGet(&mixerStatus);
|
||||||
#endif
|
#endif
|
||||||
int nMixers = 0;
|
int nMixers = 0;
|
||||||
@ -362,7 +362,7 @@ static void actuatorTask(void* parameters)
|
|||||||
// Update in case read only (eg. during servo configuration)
|
// Update in case read only (eg. during servo configuration)
|
||||||
ActuatorCommandGet(&command);
|
ActuatorCommandGet(&command);
|
||||||
|
|
||||||
#if defined(DIAGNOSTICS)
|
#if defined(MIXERSTATUS_DIAGNOSTICS)
|
||||||
MixerStatusSet(&mixerStatus);
|
MixerStatusSet(&mixerStatus);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -127,7 +127,7 @@ int32_t StabilizationInitialize()
|
|||||||
// Initialize variables
|
// Initialize variables
|
||||||
StabilizationSettingsInitialize();
|
StabilizationSettingsInitialize();
|
||||||
ActuatorDesiredInitialize();
|
ActuatorDesiredInitialize();
|
||||||
#if defined(DIAGNOSTICS)
|
#if defined(RATEDESIRED_DIAGNOSTICS)
|
||||||
RateDesiredInitialize();
|
RateDesiredInitialize();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -176,7 +176,7 @@ static void stabilizationTask(void* parameters)
|
|||||||
AttitudeActualGet(&attitudeActual);
|
AttitudeActualGet(&attitudeActual);
|
||||||
GyrosGet(&gyrosData);
|
GyrosGet(&gyrosData);
|
||||||
|
|
||||||
#if defined(DIAGNOSTICS)
|
#if defined(RATEDESIRED_DIAGNOSTICS)
|
||||||
RateDesiredGet(&rateDesired);
|
RateDesiredGet(&rateDesired);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -308,7 +308,7 @@ static void stabilizationTask(void* parameters)
|
|||||||
}
|
}
|
||||||
|
|
||||||
uint8_t shouldUpdate = 1;
|
uint8_t shouldUpdate = 1;
|
||||||
#if defined(DIAGNOSTICS)
|
#if defined(RATEDESIRED_DIAGNOSTICS)
|
||||||
RateDesiredSet(&rateDesired);
|
RateDesiredSet(&rateDesired);
|
||||||
#endif
|
#endif
|
||||||
ActuatorDesiredGet(&actuatorDesired);
|
ActuatorDesiredGet(&actuatorDesired);
|
||||||
|
@ -82,7 +82,7 @@ static void objectUpdatedCb(UAVObjEvent * ev);
|
|||||||
static void updateStats();
|
static void updateStats();
|
||||||
static void updateSystemAlarms();
|
static void updateSystemAlarms();
|
||||||
static void systemTask(void *parameters);
|
static void systemTask(void *parameters);
|
||||||
#if defined(DIAGNOSTICS)
|
#if defined(I2C_WDG_STATS_DIAGNOSTICS)
|
||||||
static void updateI2Cstats();
|
static void updateI2Cstats();
|
||||||
static void updateWDGstats();
|
static void updateWDGstats();
|
||||||
#endif
|
#endif
|
||||||
@ -118,7 +118,7 @@ int32_t SystemModInitialize(void)
|
|||||||
#if defined(DIAG_TASKS)
|
#if defined(DIAG_TASKS)
|
||||||
TaskInfoInitialize();
|
TaskInfoInitialize();
|
||||||
#endif
|
#endif
|
||||||
#if defined(DIAGNOSTICS)
|
#if defined(I2C_WDG_STATS_DIAGNOSTICS)
|
||||||
I2CStatsInitialize();
|
I2CStatsInitialize();
|
||||||
WatchdogStatusInitialize();
|
WatchdogStatusInitialize();
|
||||||
#endif
|
#endif
|
||||||
@ -168,7 +168,7 @@ static void systemTask(void *parameters)
|
|||||||
|
|
||||||
// Update the system alarms
|
// Update the system alarms
|
||||||
updateSystemAlarms();
|
updateSystemAlarms();
|
||||||
#if defined(DIAGNOSTICS)
|
#if defined(I2C_WDG_STATS_DIAGNOSTICS)
|
||||||
updateI2Cstats();
|
updateI2Cstats();
|
||||||
updateWDGstats();
|
updateWDGstats();
|
||||||
#endif
|
#endif
|
||||||
@ -301,7 +301,7 @@ static void objectUpdatedCb(UAVObjEvent * ev)
|
|||||||
/**
|
/**
|
||||||
* Called periodically to update the I2C statistics
|
* Called periodically to update the I2C statistics
|
||||||
*/
|
*/
|
||||||
#if defined(DIAGNOSTICS)
|
#if defined(I2C_WDG_STATS_DIAGNOSTICS)
|
||||||
static void updateI2Cstats()
|
static void updateI2Cstats()
|
||||||
{
|
{
|
||||||
#if defined(PIOS_INCLUDE_I2C)
|
#if defined(PIOS_INCLUDE_I2C)
|
||||||
|
@ -38,7 +38,10 @@ OUTDIR := $(TOP)/build/$(TARGET)
|
|||||||
DEBUG ?= NO
|
DEBUG ?= NO
|
||||||
|
|
||||||
# Include objects that are just nice information to show
|
# Include objects that are just nice information to show
|
||||||
DIAGNOSTICS ?= NO
|
STACK_DIAGNOSTICS ?= NO
|
||||||
|
MIXERSTATUS_DIAGNOSTICS ?= NO
|
||||||
|
RATEDESIRED_DIAGNOSTICS ?= NO
|
||||||
|
I2C_WDG_STATS_DIAGNOSTICS ?= NO
|
||||||
|
|
||||||
# Set to YES to build a FW version that will erase all flash memory
|
# Set to YES to build a FW version that will erase all flash memory
|
||||||
ERASE_FLASH ?= NO
|
ERASE_FLASH ?= NO
|
||||||
@ -378,8 +381,20 @@ ifeq ($(DEBUG),YES)
|
|||||||
CFLAGS = -DDEBUG
|
CFLAGS = -DDEBUG
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(DIAGNOSTICS),YES)
|
ifeq ($(STACK_DIAGNOSTICS),YES)
|
||||||
CFLAGS = -DDIAGNOSTICS
|
CFLAGS += -DSTACK_DIAGNOSTICS
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(MIXERSTATUS_DIAGNOSTICS),YES)
|
||||||
|
CFLAGS += -DMIXERSTATUS_DIAGNOSTICS
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(RATEDESIRED_DIAGNOSTICS),YES)
|
||||||
|
CFLAGS += -DRATEDESIRED_DIAGNOSTICS
|
||||||
|
endif
|
||||||
|
|
||||||
|
ifeq ($(I2C_WDG_STATS_DIAGNOSTICS),YES)
|
||||||
|
CFLAGS += -DI2C_WDG_STATS_DIAGNOSTICS
|
||||||
endif
|
endif
|
||||||
|
|
||||||
CFLAGS += -g$(DEBUGF)
|
CFLAGS += -g$(DEBUGF)
|
||||||
|
@ -255,7 +255,11 @@ endif
|
|||||||
# common architecture-specific flags from the device-specific library makefile
|
# common architecture-specific flags from the device-specific library makefile
|
||||||
CFLAGS += $(ARCHFLAGS)
|
CFLAGS += $(ARCHFLAGS)
|
||||||
|
|
||||||
CFLAGS += -DDIAGNOSTICS
|
CFLAGS += -DSTACK_DIAGNOSTICS
|
||||||
|
CFLAGS += -DMIXERSTATUS_DIAGNOSTICS
|
||||||
|
CFLAGS += -DRATEDESIRED_DIAGNOSTICS
|
||||||
|
CFLAGS += -DI2C_WDG_STATS_DIAGNOSTICS
|
||||||
|
|
||||||
CFLAGS += -DDIAG_TASKS
|
CFLAGS += -DDIAG_TASKS
|
||||||
|
|
||||||
# This is not the best place for these. Really should abstract out
|
# This is not the best place for these. Really should abstract out
|
||||||
|
@ -250,7 +250,13 @@ endif
|
|||||||
CFLAGS += $(ARCHFLAGS)
|
CFLAGS += $(ARCHFLAGS)
|
||||||
|
|
||||||
CFLAGS += $(UAVOBJDEFINE)
|
CFLAGS += $(UAVOBJDEFINE)
|
||||||
CFLAGS += -DDIAGNOSTICS
|
|
||||||
|
CFLAGS += -DSTACK_DIAGNOSTICS
|
||||||
|
CFLAGS += -DMIXERSTATUS_DIAGNOSTICS
|
||||||
|
CFLAGS += -DRATEDESIRED_DIAGNOSTICS
|
||||||
|
CFLAGS += -DI2C_WDG_STATS_DIAGNOSTICS
|
||||||
|
|
||||||
|
|
||||||
CFLAGS += -DDIAG_TASKS
|
CFLAGS += -DDIAG_TASKS
|
||||||
|
|
||||||
# This is not the best place for these. Really should abstract out
|
# This is not the best place for these. Really should abstract out
|
||||||
|
Loading…
x
Reference in New Issue
Block a user