1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 21:05:35 +03:00

Renaming 'featureEnable' / 'featureDisable' to make their use a bit more obvious.

This commit is contained in:
mikeller 2019-12-09 01:38:07 +13:00
parent 18c485707e
commit 5f3d56cd2c
13 changed files with 42 additions and 42 deletions

View file

@ -447,7 +447,7 @@ extern "C" {
void persistentObjectWrite(persistentObjectId_e, uint32_t) {}
void failsafeOnRxSuspend(uint32_t ) {}
void failsafeOnRxResume(void) {}
void featureDisable(uint32_t) { }
void featureDisableImmediate(uint32_t) { }
bool rxMspFrameComplete(void) { return false; }
bool isPPMDataBeingReceived(void) { return false; }
bool isPWMDataBeingReceived(void) { return false; }

View file

@ -193,7 +193,7 @@ bool featureIsEnabled(uint32_t) {
return false;
}
void featureDisable(uint32_t) {
void featureDisableImmediate(uint32_t) {
}
bool rxMspFrameComplete(void)