Fix keyboard variable size

replace/c07ff210ac600e74e8bae879def5e1195cc19433
Fred 2020-10-30 22:59:49 +01:00 zatwierdzone przez Niccolò Izzo
rodzic 3d1f255d46
commit 09be53b24a
2 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -22,6 +22,7 @@
#include <stdbool.h>
#include <state.h>
#include <stdint.h>
/**
* This function initialises the User Interface, starting the
@ -34,7 +35,7 @@ void ui_init();
* current radio state and the keys pressed.
* @return true if a screen refresh is needed after the update
*/
bool ui_update(state_t state, uint16_t keys);
bool ui_update(state_t state, uint32_t keys);
/**
* This function terminates the User Interface.

Wyświetl plik

@ -61,7 +61,7 @@ void ui_init()
{
}
bool ui_update(state_t state, uint16_t keys)
bool ui_update(state_t state, uint32_t keys)
{
return true;
}