Reduce display update frequency to allow more CPU time for GPS frame

processing when unarmed.
This commit is contained in:
Dominic Clifton 2015-03-28 18:55:18 +00:00
parent 9f88fb85d7
commit 704ace82ec
1 changed files with 1 additions and 1 deletions

View File

@ -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;