Fix keyboard variable size
This commit is contained in:
parent
3d1f255d46
commit
09be53b24a
|
|
@ -22,6 +22,7 @@
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <state.h>
|
#include <state.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This function initialises the User Interface, starting the
|
* This function initialises the User Interface, starting the
|
||||||
|
|
@ -34,7 +35,7 @@ void ui_init();
|
||||||
* current radio state and the keys pressed.
|
* current radio state and the keys pressed.
|
||||||
* @return true if a screen refresh is needed after the update
|
* @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.
|
* This function terminates the User Interface.
|
||||||
|
|
|
||||||
|
|
@ -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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue