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:
parent
18c485707e
commit
5f3d56cd2c
13 changed files with 42 additions and 42 deletions
|
@ -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; }
|
||||
|
|
|
@ -193,7 +193,7 @@ bool featureIsEnabled(uint32_t) {
|
|||
return false;
|
||||
}
|
||||
|
||||
void featureDisable(uint32_t) {
|
||||
void featureDisableImmediate(uint32_t) {
|
||||
}
|
||||
|
||||
bool rxMspFrameComplete(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue