2020-05-02 01:54:58 -04:00
|
|
|
//======================================================================
|
|
|
|
// cat.h
|
|
|
|
//======================================================================
|
|
|
|
|
|
|
|
#ifndef __iop_cat_h__
|
|
|
|
#define __iop_cat_h__
|
|
|
|
|
2020-05-17 00:48:39 -04:00
|
|
|
//#define ACK 0
|
|
|
|
//#define CAT_PREFIX 0xC0
|
|
|
|
//#define IOP_PREFIX 0xD0
|
|
|
|
//#define EEPROM_READ_PREFIX 0xE0
|
|
|
|
//#define EEPROM_WRITE_PREFIX 0xF0
|
2020-05-14 21:49:54 -04:00
|
|
|
|
2020-05-17 00:48:39 -04:00
|
|
|
#include <iopcomm.h>
|
2020-05-03 01:37:21 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
2020-05-02 01:54:58 -04:00
|
|
|
#define USBSERIAL Serial
|
|
|
|
#define HWSERIAL Serial1
|
|
|
|
|
|
|
|
void initCAT(long, int);
|
|
|
|
void serviceCAT();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//======================================================================
|
|
|
|
// EOF
|
|
|
|
//======================================================================
|