f819e211da
just moved all the audio stuff into its own files. Created a structure for storing configuration data in... the intent is that it will be stored to EEPROM (using EEPROMAnything). It does compile now, but haven't actually tried it out. Notable learning points: need to set micGain AFTER selecting the mic input. So lot of code now to take care of trying to smoothly mute and unmute things.
19 lines
458 B
C
19 lines
458 B
C
//======================================================================
|
|
// cat.h
|
|
//======================================================================
|
|
|
|
#ifndef __iop_cat_h__
|
|
#define __iop_cat_h__
|
|
|
|
#define USBSERIAL Serial
|
|
#define HWSERIAL Serial1
|
|
|
|
void initCAT(long, int);
|
|
void serviceCAT();
|
|
|
|
#endif
|
|
|
|
//======================================================================
|
|
// EOF
|
|
//======================================================================
|