* add get_modetype
This commit is contained in:
David Freese 2021-01-12 14:04:16 -06:00
parent cc1d1faad6
commit 970c43f83f
2 changed files with 6 additions and 0 deletions

View file

@ -50,6 +50,7 @@ public:
void set_vfoB(unsigned long int);
void set_modeB(int val);
int get_modeB();
int get_modetype(int n);
void set_PTT_control(int val);
int get_smeter();

View file

@ -192,6 +192,11 @@ int RIG_FT847::get_modeB()
return B.imode;
}
int RIG_FT847::get_modetype(int n)
{
return FT847_mode_type[n];
}
// Tranceiver PTT on/off
void RIG_FT847::set_PTT_control(int val)
{