mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-17 22:56:00 -05:00
20 lines
413 B
C
20 lines
413 B
C
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "button.h"
|
|
|
|
extern const Button* const mainMenuButtons[];
|
|
extern const uint8_t MAIN_MENU_NUM_BUTTONS;
|
|
|
|
extern const Button bVfoA;
|
|
extern const Button bVfoB;
|
|
extern const Button bRit;
|
|
extern const Button bCw;
|
|
extern const Button bSpl;
|
|
void updateBandButtons(const uint32_t old_freq);
|
|
void updateSidebandButtons();
|
|
void drawTx();
|
|
void drawVersion();
|
|
void drawCallsign();
|