1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 17:25:20 +03:00

Added throttle flight statistics (#12978)

* Added throttle flight statistics

* Changed rc_stats.c/h license header to a modern one

* rc_stats.c Style fix
This commit is contained in:
Ivan Efimov 2023-08-06 10:32:57 -05:00 committed by GitHub
parent fb9587b2ec
commit dfef3bfb0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 191 additions and 1 deletions

View file

@ -20,6 +20,8 @@
#pragma once
#include <stdint.h>
#define DEBUG16_VALUE_COUNT 8
extern int16_t debug[DEBUG16_VALUE_COUNT];
extern uint8_t debugMode;
@ -112,6 +114,7 @@ typedef enum {
DEBUG_CURRENT_ANGLE,
DEBUG_DSHOT_TELEMETRY_COUNTS,
DEBUG_RPM_LIMIT,
DEBUG_RC_STATS,
DEBUG_COUNT
} debugType_e;