Initial public release.
This commit is contained in:
parent
7b169e8116
commit
dac4af8d25
255 changed files with 68595 additions and 2 deletions
79
2020TPCApp1.cydsn/Menu/HardwareSettings/HardwareMenuItem.c
Normal file
79
2020TPCApp1.cydsn/Menu/HardwareSettings/HardwareMenuItem.c
Normal file
|
@ -0,0 +1,79 @@
|
|||
/* Include Files */
|
||||
#include "KTag.h"
|
||||
|
||||
static uint8_t SubmenuIndex = 0;
|
||||
static MenuItem_T const * const Submenus[] =
|
||||
{
|
||||
&VolumeMenuItem,
|
||||
&HandedMenuItem
|
||||
};
|
||||
static const uint8_t N_SUBMENUS = (sizeof(Submenus) / sizeof(MenuItem_T *));
|
||||
|
||||
static void OnFocus(bool IncludeDetails);
|
||||
static MenuItem_T const * OnSelect();
|
||||
static void OnIncrement();
|
||||
static void OnDecrement();
|
||||
|
||||
const MenuItem_T HardwareMenuItem =
|
||||
{
|
||||
.OnFocus = OnFocus,
|
||||
.OnSelect = OnSelect,
|
||||
.OnIncrement = OnIncrement,
|
||||
.OnDecrement = OnDecrement
|
||||
|
||||
};
|
||||
|
||||
static void OnFocus(bool IncludeDetails)
|
||||
{
|
||||
AudioAction_T audio_action = {.ID = AUDIO_PLAY_HARDWARE_SETTINGS_PROMPT, .Play_To_Completion = true, .Data = (void *)0x00};
|
||||
xQueueSend(xQueueAudio, &audio_action, 0);
|
||||
|
||||
if (IncludeDetails == true)
|
||||
{
|
||||
if (Submenus[SubmenuIndex]->OnFocus != NULL)
|
||||
{
|
||||
Submenus[SubmenuIndex]->OnFocus(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static MenuItem_T const * OnSelect()
|
||||
{
|
||||
return Submenus[SubmenuIndex];
|
||||
}
|
||||
|
||||
static void OnIncrement()
|
||||
{
|
||||
if (SubmenuIndex < (N_SUBMENUS -1))
|
||||
{
|
||||
SubmenuIndex++;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Wrap around.
|
||||
SubmenuIndex = 0;
|
||||
}
|
||||
|
||||
if (Submenus[SubmenuIndex]->OnFocus != NULL)
|
||||
{
|
||||
Submenus[SubmenuIndex]->OnFocus(false);
|
||||
}
|
||||
}
|
||||
|
||||
static void OnDecrement()
|
||||
{
|
||||
if (SubmenuIndex > 0)
|
||||
{
|
||||
SubmenuIndex--;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Wrap around.
|
||||
SubmenuIndex = (N_SUBMENUS -1);
|
||||
}
|
||||
|
||||
if (Submenus[SubmenuIndex]->OnFocus != NULL)
|
||||
{
|
||||
Submenus[SubmenuIndex]->OnFocus(false);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue