mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-20 06:45:16 +03:00
Reduce display update frequency to allow more CPU time for GPS frame
processing when unarmed.
This commit is contained in:
parent
9f88fb85d7
commit
704ace82ec
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ controlRateConfig_t *getControlRateConfig(uint8_t profileIndex);
|
|||
|
||||
#define MILLISECONDS_IN_A_SECOND (1000 * 1000)
|
||||
|
||||
#define DISPLAY_UPDATE_FREQUENCY (MILLISECONDS_IN_A_SECOND / 10)
|
||||
#define DISPLAY_UPDATE_FREQUENCY (MILLISECONDS_IN_A_SECOND / 5)
|
||||
#define PAGE_CYCLE_FREQUENCY (MILLISECONDS_IN_A_SECOND * 5)
|
||||
|
||||
static uint32_t nextDisplayUpdateAt = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue