2020-02-09 17:10:32 -05:00
|
|
|
#include "menu_main.h"
|
|
|
|
|
2020-02-09 18:56:43 -05:00
|
|
|
#include <avr/pgmspace.h>
|
2020-02-09 20:09:46 -05:00
|
|
|
#include <Arduino.h>
|
2020-02-09 18:56:43 -05:00
|
|
|
|
2020-02-09 18:30:37 -05:00
|
|
|
#include "button.h"
|
2020-02-09 19:17:18 -05:00
|
|
|
#include "menu_utils.h"
|
2020-02-09 17:10:32 -05:00
|
|
|
#include "morse.h"
|
|
|
|
#include "settings.h"
|
2020-02-09 18:30:37 -05:00
|
|
|
#include "ubitx.h"//THRESHOLD_USB_LSB
|
2020-02-09 17:10:32 -05:00
|
|
|
#include "utils.h"
|
|
|
|
|
2020-02-09 18:30:37 -05:00
|
|
|
MenuReturn_e runMainMenu(const ButtonPress_e tuner_button,
|
|
|
|
const ButtonPress_e touch_button,
|
|
|
|
const Point touch_point,
|
|
|
|
const int16_t knob);
|
2020-02-09 17:10:32 -05:00
|
|
|
|
|
|
|
Menu_t mainMenu = {
|
2020-02-09 18:30:37 -05:00
|
|
|
runMainMenu,
|
2020-02-09 17:10:32 -05:00
|
|
|
nullptr
|
|
|
|
};
|
|
|
|
|
2020-02-09 18:30:37 -05:00
|
|
|
Menu_t* const rootMenu = &mainMenu;
|
2020-02-09 17:10:32 -05:00
|
|
|
|
|
|
|
bool mainMenuSelecting = false;//Tracks if we're selecting buttons with knob, or adjusting frequency
|
2020-02-09 20:04:47 -05:00
|
|
|
int16_t mainMenuSelectedItemRaw = 0;//Allow negative only for easier checks on wrap around
|
2020-02-09 17:10:32 -05:00
|
|
|
|
2020-02-09 18:56:43 -05:00
|
|
|
const Button mainMenuButtons [] PROGMEM = {};
|
2020-02-09 19:17:18 -05:00
|
|
|
static constexpr uint8_t MAIN_MENU_NUM_BUTTONS = sizeof(mainMenuButtons) / sizeof(mainMenuButtons[0]);
|
2020-02-09 18:56:43 -05:00
|
|
|
|
2020-02-09 17:10:32 -05:00
|
|
|
void drawMainMenu(void)
|
|
|
|
{
|
|
|
|
//TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
void mainMenuTune(int16_t knob)
|
|
|
|
{
|
|
|
|
static uint32_t current_freq = 0;
|
|
|
|
|
|
|
|
if((0 == knob) && (GetActiveVfoFreq() == current_freq)){
|
|
|
|
//Nothing to do - we're already set!
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
current_freq = GetActiveVfoFreq();
|
|
|
|
uint32_t new_freq = current_freq + (50 * knob);
|
|
|
|
|
|
|
|
//Transition from below to above the traditional threshold for USB
|
|
|
|
if(current_freq < THRESHOLD_USB_LSB && new_freq >= THRESHOLD_USB_LSB){
|
|
|
|
SetActiveVfoMode(VfoMode_e::VFO_MODE_USB);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Transition from above to below the traditional threshold for USB
|
|
|
|
if(current_freq >= THRESHOLD_USB_LSB && new_freq < THRESHOLD_USB_LSB){
|
|
|
|
SetActiveVfoMode(VfoMode_e::VFO_MODE_LSB);
|
|
|
|
}
|
|
|
|
|
|
|
|
setFrequency(new_freq);
|
|
|
|
current_freq = new_freq;
|
|
|
|
}
|
|
|
|
|
2020-02-09 18:30:37 -05:00
|
|
|
MenuReturn_e runMainMenu(const ButtonPress_e tuner_button,
|
|
|
|
const ButtonPress_e touch_button,
|
|
|
|
const Point touch_point,
|
|
|
|
const int16_t knob)
|
2020-02-09 17:10:32 -05:00
|
|
|
{
|
|
|
|
if(runSubmenu(&mainMenu,
|
|
|
|
drawMainMenu,
|
|
|
|
tuner_button,
|
|
|
|
touch_button,
|
|
|
|
touch_point,
|
|
|
|
knob)){
|
|
|
|
//Submenu processed the input, so return now
|
2020-02-09 18:56:43 -05:00
|
|
|
mainMenuSelectedItemRaw = 0;
|
|
|
|
mainMenuSelecting = false;
|
2020-02-09 17:10:32 -05:00
|
|
|
return MenuReturn_e::StillActive;//main menu always returns StillActive
|
|
|
|
}//end submenu
|
|
|
|
|
|
|
|
//Submenu didn't run, so handle the inputs ourselves
|
|
|
|
|
|
|
|
//Check tuner_button
|
|
|
|
if(ButtonPress_e::NotPressed != tuner_button){
|
|
|
|
switch(tuner_button){
|
|
|
|
default://Fallthrough intended
|
|
|
|
case ButtonPress_e::NotPressed:
|
|
|
|
{
|
|
|
|
//Nothing to do
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ButtonPress_e::ShortPress:
|
|
|
|
{
|
|
|
|
if(mainMenuSelecting){
|
|
|
|
uint8_t menu_index = mainMenuSelectedItemRaw/MENU_KNOB_COUNTS_PER_ITEM;
|
|
|
|
//TODO: activate button
|
2020-02-09 20:09:46 -05:00
|
|
|
Serial.print(F("Select button "));
|
|
|
|
Serial.print(menu_index);
|
|
|
|
Serial.print(F(":"));
|
|
|
|
Serial.println(mainMenuButtons[menu_index].text);
|
2020-02-09 17:10:32 -05:00
|
|
|
}
|
2020-02-09 18:56:43 -05:00
|
|
|
else{
|
2020-02-09 20:04:47 -05:00
|
|
|
initSelector(&mainMenuSelectedItemRaw,
|
|
|
|
mainMenuButtons,
|
|
|
|
MAIN_MENU_NUM_BUTTONS,
|
|
|
|
MorsePlaybackType_e::PlayChar);
|
2020-02-09 18:56:43 -05:00
|
|
|
}
|
2020-02-09 17:10:32 -05:00
|
|
|
mainMenuSelecting = !mainMenuSelecting;
|
|
|
|
|
|
|
|
//Don't handle touch or knob on this run
|
|
|
|
return MenuReturn_e::StillActive;//main menu always returns StillActive
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case ButtonPress_e::LongPress:
|
|
|
|
{
|
|
|
|
if(!globalSettings.morseMenuOn){
|
|
|
|
globalSettings.morseMenuOn = true;//set before playing
|
|
|
|
morseLetter(2);
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
morseLetter(4);
|
|
|
|
globalSettings.morseMenuOn = false;//unset after playing
|
|
|
|
}
|
|
|
|
SaveSettingsToEeprom();
|
|
|
|
//Don't handle touch or knob on this run
|
|
|
|
return MenuReturn_e::StillActive;//main menu always returns StillActive
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}//switch
|
|
|
|
}//tuner_button
|
|
|
|
|
|
|
|
else if(ButtonPress_e::NotPressed != touch_button){
|
|
|
|
//We treat long and short presses the same, so no need to have a switch
|
2020-02-09 19:31:24 -05:00
|
|
|
Button button;
|
|
|
|
if(findPressedButton(mainMenuButtons,MAIN_MENU_NUM_BUTTONS,&button,touch_point)){
|
2020-02-09 17:10:32 -05:00
|
|
|
//TODO: activate button
|
2020-02-09 20:09:46 -05:00
|
|
|
Serial.print(F("Touch button "));
|
|
|
|
Serial.println(button.text);
|
2020-02-09 17:10:32 -05:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
//Touch detected, but not on our buttons, so ignore
|
2020-02-09 20:09:46 -05:00
|
|
|
Serial.println(F("Touch not on button"));
|
2020-02-09 17:10:32 -05:00
|
|
|
}
|
|
|
|
}//touch_button
|
|
|
|
|
|
|
|
else{//Neither button input type found, so handle the knob
|
|
|
|
if(mainMenuSelecting){
|
2020-02-09 20:04:47 -05:00
|
|
|
adjustSelector(&mainMenuSelectedItemRaw,
|
|
|
|
knob,
|
|
|
|
mainMenuButtons,
|
|
|
|
MAIN_MENU_NUM_BUTTONS,
|
|
|
|
MorsePlaybackType_e::PlayChar);
|
2020-02-09 17:10:32 -05:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
mainMenuTune(knob);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
return MenuReturn_e::StillActive;//main menu always returns StillActive
|
|
|
|
}
|