mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-16 12:55:19 +03:00
Added new debug mode to time pidloop subtasks.
This commit is contained in:
parent
fa24d2950e
commit
825475fd43
10 changed files with 98 additions and 78 deletions
|
@ -26,6 +26,7 @@
|
|||
#include "platform.h"
|
||||
#include "scheduler.h"
|
||||
#include "version.h"
|
||||
#include "debug.h"
|
||||
|
||||
#include "build_config.h"
|
||||
|
||||
|
@ -426,14 +427,15 @@ static const char * const lookupTableMagHardware[] = {
|
|||
"AK8963"
|
||||
};
|
||||
|
||||
static const char * const lookupTableDebug[] = {
|
||||
static const char * const lookupTableDebug[DEBUG_COUNT] = {
|
||||
"NONE",
|
||||
"CYCLETIME",
|
||||
"BATTERY",
|
||||
"GYRO",
|
||||
"ACCELEROMETER",
|
||||
"MIXER",
|
||||
"AIRMODE"
|
||||
"AIRMODE",
|
||||
"PIDLOOP",
|
||||
};
|
||||
|
||||
static const char * const lookupTableSuperExpoYaw[] = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue