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

replace/5ce2f5ebb0d2248edf8b92cd2b765d5384ca9596
Federico Amedeo Izzo 2020-12-31 13:58:49 +01:00
rodzic 0769701ccc
commit c2f331467c
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

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