mirror of
https://codeberg.org/mclemens/ubitxv6.git
synced 2024-11-05 08:37:42 -05:00
16 lines
498 B
C
16 lines
498 B
C
#pragma once
|
|
|
|
#include "settings.h"
|
|
|
|
void saveVFOs();
|
|
void setFrequency(const unsigned long freq, const bool transmit = false);
|
|
void startTx(TuningMode_e tx_mode);
|
|
void stopTx();
|
|
void ritEnable(unsigned long f);
|
|
void ritDisable();
|
|
void checkCAT();
|
|
void cwKeyer(void);
|
|
void switchVFO(Vfo_e vfoSelect);
|
|
|
|
bool autoSelectSidebandChanged(const uint32_t old_frequency); //if the current frequency defaults to a different sideband mode, updates to that sideband mode and returns true. Else, returns false
|