ubitx-iop/ubitx_iop.h
Rob French 211d9ff9b4 (Temporarily?) resolved issue with no transmit output. It looks like
switching dacVolumes around from transmit to receive wasn't working as
expected.  Transmit audio through the DAC stayed muted.  If I need to
use that for smooth audio transitions, I'll need to do some more
research.
2020-05-03 01:27:54 -05:00

29 lines
604 B
C

//======================================================================
// ubitx_iop.h
//======================================================================
#ifndef __ubitx_iop_h__
#define __ubitx_iop_h__
#include "config.h"
#include "audio.h"
#include "cat.h"
#include "eeprom.h"
// comment this out to disable debugging code
//#define DEBUG
enum RigMode {
MODE_SSB = 0,
MODE_DIGI = 1,
MODE_CW = 2,
};
extern RigMode rigMode;
#endif
//======================================================================
// EOF
//======================================================================