1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-23 08:15:30 +03:00

Multiple telemtry providers can now be active at the same time on any

serial port. 
MSP telemetry can now be at any baud rate.

A pattern is emerging in each telemetry provider, code is duplicated to
get things working, refactoring can come later.
This commit is contained in:
Dominic Clifton 2015-02-18 23:10:04 +00:00
parent 3e64ce883c
commit 7dcc7b2fb5
15 changed files with 212 additions and 90 deletions

View file

@ -362,8 +362,9 @@ void init(void)
#endif
#ifdef TELEMETRY
if (feature(FEATURE_TELEMETRY))
if (feature(FEATURE_TELEMETRY)) {
telemetryInit();
}
#endif
#ifdef BLACKBOX