UI: Fix bug where key 9 did not work in frequency input

This commit is contained in:
Federico Amedeo Izzo 2020-12-31 13:58:49 +01:00
parent 0769701ccc
commit c2f331467c
1 changed files with 2 additions and 2 deletions

View File

@ -73,9 +73,9 @@ static const uint16_t kbd_long_interval = OS_CFG_TICK_RATE_HZ * 0.7;
/**
* Mask for the numeric keys in a key map
* Numeric keys: bit0->bit9 = 0x1FF
* Numeric keys: bit0->bit9 = 0x3FF
*/
static const uint32_t kbd_num_mask = 0x1FF;
static const uint32_t kbd_num_mask = 0x3FF;
/**
* Structure that represents a keyboard event payload