mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-10 15:56:09 -05:00
Add numpad functionality to main menu
This commit is contained in:
parent
d42571f7a5
commit
04560ef8b6
@ -29,8 +29,6 @@ Menu_t* const rootMenu = &mainMenu;
|
||||
bool mainMenuSelecting = false;//Tracks if we're selecting buttons with knob, or adjusting frequency
|
||||
int16_t mainMenuSelectedItemRaw = 0;//Allow negative only for easier checks on wrap around
|
||||
|
||||
extern Button* const* buttons;
|
||||
|
||||
void drawMainMenu(void)
|
||||
{
|
||||
displayClear(COLOR_BACKGROUND);
|
||||
|
@ -7,6 +7,8 @@
|
||||
#include "bands.h"
|
||||
#include "button.h"
|
||||
#include "color_theme.h"
|
||||
#include "menu_main.h"
|
||||
#include "menu_numpad.h"
|
||||
#include "morse.h"
|
||||
#include "nano_gui.h"
|
||||
#include "settings.h"
|
||||
@ -286,7 +288,7 @@ constexpr Button bNumpad PROGMEM = {
|
||||
'F'
|
||||
};
|
||||
|
||||
const Button* const buttons[] PROGMEM = {
|
||||
const Button* const mainMenuButtons [] PROGMEM = {
|
||||
&bVfoA, &bVfoB,
|
||||
|
||||
&bRit, &bUsb, &bLsb, &bCw, &bSpl,
|
||||
@ -294,8 +296,7 @@ const Button* const buttons[] PROGMEM = {
|
||||
&b15, &b10, &bMenu, &bNumpad
|
||||
};
|
||||
|
||||
const Button* const* mainMenuButtons = buttons;
|
||||
const uint8_t MAIN_MENU_NUM_BUTTONS = sizeof(buttons) / sizeof(buttons[0]);
|
||||
const uint8_t MAIN_MENU_NUM_BUTTONS = sizeof(mainMenuButtons) / sizeof(mainMenuButtons[0]);
|
||||
|
||||
void updateBandButtons(const uint32_t old_freq)
|
||||
{
|
||||
@ -587,7 +588,6 @@ void osMenu(){
|
||||
}
|
||||
|
||||
void osNumpad(){
|
||||
//TODO
|
||||
//numpadMenu->initMenu();
|
||||
//mainMenu.active_submenu = numpadMenu;
|
||||
numpadMenu->initMenu();
|
||||
rootMenu->active_submenu = numpadMenu;
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
#include "button.h"
|
||||
|
||||
extern const Button* const* mainMenuButtons;
|
||||
extern const Button* const mainMenuButtons[];
|
||||
extern const uint8_t MAIN_MENU_NUM_BUTTONS;
|
||||
|
||||
extern const Button bVfoA;
|
||||
|
Loading…
Reference in New Issue
Block a user