mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-23 16:25:31 +03:00
Fixed tests.
This commit is contained in:
parent
a101a58b68
commit
6131ac1449
1 changed files with 7 additions and 0 deletions
|
@ -273,4 +273,11 @@ void serialSetCtrlLineState(serialPort_t *, uint16_t ) {}
|
|||
|
||||
void serialSetBaudRateCb(serialPort_t *, void (*)(serialPort_t *context, uint32_t baud), serialPort_t *) {}
|
||||
|
||||
char *getBoardName(void) { return NULL; };
|
||||
char *getManufacturerId(void) { return NULL; };
|
||||
bool boardInformationIsSet(void) { return true; };
|
||||
|
||||
bool setBoardName(char *newBoardName) { UNUSED(newBoardName); return true; };
|
||||
bool setManufacturerId(char *newManufacturerId) { UNUSED(newManufacturerId); return true; };
|
||||
bool persistBoardInformation(void) { return true; };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue