1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 21:05:35 +03:00

Move common telemetry code to telemetry_common.c/.h

This commit is contained in:
Dominic Clifton 2014-04-06 23:07:58 +01:00
parent d73094396d
commit 1cbe166c49
9 changed files with 100 additions and 55 deletions

17
src/telemetry_common.h Normal file
View file

@ -0,0 +1,17 @@
/*
* telemetry_common.h
*
* Created on: 6 Apr 2014
* Author: Hydra
*/
#ifndef TELEMETRY_COMMON_H_
#define TELEMETRY_COMMON_H_
// telemetry
void initTelemetry(void);
void updateTelemetryState(void);
void sendTelemetry(void);
bool isTelemetryEnabled(void);
#endif /* TELEMETRY_COMMON_H_ */