ubitx-iop/ubitx_iop/ubitx_iop.h
Rob French 57c97d9f98 Working with Raduino! High pitched whine in RX audio. Goes away when
USB unplugged.  Not immediate, so not a ground loop... seems to be
associated with one of my mixers...
2020-05-08 00:19:07 -05:00

37 lines
680 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,
};
enum TxState {
TX_OFF = 0,
TX_MIC,
TX_LINE,
TX_CAT,
TX_KEYER,
};
extern RigMode rigMode;
#endif
//======================================================================
// EOF
//======================================================================