1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-24 16:55:36 +03:00

Fixed build error caused by wrong #include

This commit is contained in:
Martin Budden 2016-10-20 08:53:13 +01:00
parent 23e7ce92cb
commit 8fee38808a
2 changed files with 2 additions and 5 deletions

View file

@ -66,7 +66,7 @@
#include "telemetry/telemetry.h"
#include "telemetry/mavlink.h"
#include "config/config.h"
#include "fc/config.h"
#include "config/config_profile.h"
#include "config/config_master.h"
#include "config/feature.h"

View file

@ -15,8 +15,7 @@
* along with Cleanflight. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TELEMETRY_MAVLINK_H_
#define TELEMETRY_MAVLINK_H_
#pragma once
void initMAVLinkTelemetry(void);
void handleMAVLinkTelemetry(void);
@ -24,5 +23,3 @@ void checkMAVLinkTelemetryState(void);
void freeMAVLinkTelemetryPort(void);
void configureMAVLinkTelemetryPort(void);
#endif /* TELEMETRY_MSP_H_ */