mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 04:15:44 +03:00
82 lines
1.8 KiB
C
82 lines
1.8 KiB
C
/*
|
|
* This file is part of Cleanflight and Betaflight.
|
|
*
|
|
* Cleanflight and Betaflight are free software. You can redistribute
|
|
* this software and/or modify this software under the terms of the
|
|
* GNU General Public License as published by the Free Software
|
|
* Foundation, either version 3 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* Cleanflight and Betaflight are distributed in the hope that they
|
|
* will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
* See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software.
|
|
*
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "stdint.h"
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
int16_t debug[DEBUG16_VALUE_COUNT];
|
|
uint8_t debugMode;
|
|
|
|
#ifdef DEBUG_SECTION_TIMES
|
|
uint32_t sectionTimes[2][4];
|
|
#endif
|
|
|
|
const char * const debugModeNames[DEBUG_COUNT] = {
|
|
"NONE",
|
|
"CYCLETIME",
|
|
"BATTERY",
|
|
"GYRO_FILTERED",
|
|
"ACCELEROMETER",
|
|
"PIDLOOP",
|
|
"GYRO_SCALED",
|
|
"RC_INTERPOLATION",
|
|
"ANGLERATE",
|
|
"ESC_SENSOR",
|
|
"SCHEDULER",
|
|
"STACK",
|
|
"ESC_SENSOR_RPM",
|
|
"ESC_SENSOR_TMP",
|
|
"ALTITUDE",
|
|
"FFT",
|
|
"FFT_TIME",
|
|
"FFT_FREQ",
|
|
"RX_FRSKY_SPI",
|
|
"RX_SFHSS_SPI",
|
|
"GYRO_RAW",
|
|
"DUAL_GYRO",
|
|
"DUAL_GYRO_RAW",
|
|
"DUAL_GYRO_COMBINE",
|
|
"DUAL_GYRO_DIFF",
|
|
"MAX7456_SIGNAL",
|
|
"MAX7456_SPICLOCK",
|
|
"SBUS",
|
|
"FPORT",
|
|
"RANGEFINDER",
|
|
"RANGEFINDER_QUALITY",
|
|
"LIDAR_TF",
|
|
"ADC_INTERNAL",
|
|
"RUNAWAY_TAKEOFF",
|
|
"SDIO",
|
|
"CURRENT_SENSOR",
|
|
"USB",
|
|
"SMARTAUDIO",
|
|
"RTH",
|
|
"ITERM_RELAX",
|
|
"ACRO_TRAINER",
|
|
"RC_SMOOTHING",
|
|
"RX_SIGNAL_LOSS",
|
|
"RC_SMOOTHING_RATE",
|
|
"ANTI_GRAVITY",
|
|
"DYN_LPF",
|
|
"RX_SPEKTRUM_SPI",
|
|
"DSHOT_TELEMETRY",
|
|
};
|