mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 22:35:23 +03:00
Tidied header files
This commit is contained in:
parent
4d127d6327
commit
84269be8a2
6 changed files with 12 additions and 19 deletions
|
@ -1,17 +1,18 @@
|
|||
#pragma once
|
||||
|
||||
#include "msp/msp.h"
|
||||
#include "common/streambuf.h"
|
||||
#include "rx/crsf.h"
|
||||
#include "telemetry/smartport.h"
|
||||
|
||||
typedef void (*mspResponseFnPtr)(uint8_t *payload);
|
||||
|
||||
struct mspPacket_s;
|
||||
typedef struct mspPackage_s {
|
||||
sbuf_t requestFrame;
|
||||
uint8_t *requestBuffer;
|
||||
uint8_t *responseBuffer;
|
||||
mspPacket_t *requestPacket;
|
||||
mspPacket_t *responsePacket;
|
||||
struct mspPacket_s *requestPacket;
|
||||
struct mspPacket_s *responsePacket;
|
||||
} mspPackage_t;
|
||||
|
||||
typedef union mspRxBuffer_u {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue