23 lines
503 B
C
23 lines
503 B
C
|
|
#ifndef __config_h__
|
|
#define __config_h__
|
|
|
|
#define DEBUG_USB 1
|
|
#define DEBUG_USB_RAW 1
|
|
#define DEBUG_SRAM 1
|
|
#define DEBUG_SREG 1
|
|
#define DEBUG 1
|
|
|
|
|
|
#define REQ_STATUS_IDLE 0
|
|
#define REQ_STATUS_UPLOAD 1
|
|
#define REQ_STATUS_CRC 2
|
|
|
|
#define USB_MAX_TRANS 0xff
|
|
#define USB_CRC_CHECK 1
|
|
|
|
#define TRANSFER_BUFFER_SIZE 0xff
|
|
|
|
|
|
#endif
|