mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 01:05:27 +03:00
Merge pull request #9981 from mikeller/fix_max7456_delay_problems
Fixed the MAX7456 loop time problems introduced by #9948.
This commit is contained in:
commit
94cd650472
18 changed files with 118 additions and 96 deletions
|
@ -97,7 +97,7 @@ static int displayPortTestHeartbeat(displayPort_t *displayPort)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static void displayPortTestResync(displayPort_t *displayPort)
|
||||
static void displayPortTestRedraw(displayPort_t *displayPort)
|
||||
{
|
||||
UNUSED(displayPort);
|
||||
}
|
||||
|
@ -118,7 +118,7 @@ static const displayPortVTable_t testDisplayPortVTable = {
|
|||
.writeChar = displayPortTestWriteChar,
|
||||
.isTransferInProgress = displayPortTestIsTransferInProgress,
|
||||
.heartbeat = displayPortTestHeartbeat,
|
||||
.resync = displayPortTestResync,
|
||||
.redraw = displayPortTestRedraw,
|
||||
.txBytesFree = displayPortTestTxBytesFree
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue