1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-26 01:35:41 +03:00

Rebased onto super-abstracted msp

This commit is contained in:
jflyper 2016-10-20 23:21:32 +09:00
parent 01eab00fd7
commit 0249443862
8 changed files with 71 additions and 49 deletions

View file

@ -29,3 +29,4 @@ struct serialPort_s;
typedef void (*mspPostProcessFnPtr)(struct serialPort_s *port); // msp post process function, used for gracefully handling reboots, etc.
struct mspPort_s;
typedef mspResult_e (*mspProcessCommandFnPtr)(struct mspPort_s *mspPort, mspPostProcessFnPtr *mspPostProcessFn);
typedef void (*mspPushCommandFnPtr)(struct mspPort_s *, uint8_t, uint8_t *, int);