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

Fixed naming of function prototypes in 'pwm_output.h'.

This commit is contained in:
Michael Keller 2017-07-31 18:38:23 +08:00
parent 175dbc1123
commit a9da874d83
2 changed files with 7 additions and 7 deletions

View file

@ -28,12 +28,12 @@
#include "timer.h"
#include "drivers/pwm_output.h"
static pwmWriteFunc *pwmWrite;
static pwmWriteFn *pwmWrite;
static pwmOutputPort_t motors[MAX_SUPPORTED_MOTORS];
static pwmCompleteWriteFunc *pwmCompleteWrite = NULL;
static pwmCompleteWriteFn *pwmCompleteWrite = NULL;
#ifdef USE_DSHOT
loadDmaBufferFunc *loadDmaBuffer;
loadDmaBufferFn *loadDmaBuffer;
#endif
#ifdef USE_SERVOS