mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Merge pull request #1525 from basdelfos/esc_telemetry_dshot_rebase
Implementation of KISS ESC Telemetry protocol (rebase)
This commit is contained in:
commit
935547fe50
43 changed files with 493 additions and 50 deletions
|
@ -103,6 +103,7 @@
|
|||
#include "sensors/initialisation.h"
|
||||
|
||||
#include "telemetry/telemetry.h"
|
||||
#include "telemetry/esc_telemetry.h"
|
||||
|
||||
#include "flight/pid.h"
|
||||
#include "flight/imu.h"
|
||||
|
@ -490,6 +491,12 @@ void init(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
#ifdef USE_ESC_TELEMETRY
|
||||
if (feature(FEATURE_ESC_TELEMETRY)) {
|
||||
escTelemetryInit();
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef USB_CABLE_DETECTION
|
||||
usbCableDetectInit();
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue