mirror of
https://github.com/dkgrizzly/GreenSCSI.git
synced 2025-01-16 17:30:19 +00:00
44 lines
1.8 KiB
C
Executable File
44 lines
1.8 KiB
C
Executable File
#ifndef __CONFIG_H
|
|
#define __CONFIG_H
|
|
|
|
#define DEBUG 1 // 0:No debug information output (Faster by 2-3x+)
|
|
// 1: Debug information output to USB Serial
|
|
// 2: Debug information output to LOG.txt (slow)
|
|
|
|
#define SYNCHRO false // Support Synchronous mode.
|
|
#define ACK_INTERRUPTS false
|
|
#define READ_SPEED_OPTIMIZE true //
|
|
#define WRITE_SPEED_OPTIMIZE true //
|
|
#define READ_SPEED_OPTIMIZE_RAW true //
|
|
#define WRITE_SPEED_OPTIMIZE_RAW true //
|
|
#define USE_DB2ID_TABLE true // Use table to get ID from SEL-DB
|
|
|
|
// SCSI config
|
|
#define NUM_SCSIID 8 // Maximum number of supported SCSI-IDs (The minimum is 1)
|
|
#define NUM_SCSILUN 8 // Maximum number of LUNs supported (The minimum is 1)
|
|
#define NUM_VDEV 16 // Maximum number of VDEVs supported (The minimum is 1)
|
|
|
|
#define READ_PARITY_CHECK 0 // Perform read parity check (unverified)
|
|
|
|
// HDD format
|
|
#define MAX_BLOCKSIZE (1 << 15) // Maximum BLOCK size (2048 to 8192 tested, 16384 had issues)
|
|
|
|
#define SCSI_INQUIRY_RESPONSE_SIZE 96
|
|
extern uint8_t SCSI_INQUIRY_RESPONSE[][SCSI_INQUIRY_RESPONSE_SIZE];
|
|
|
|
// Supported Device Types
|
|
#define SUPPORT_DISK true
|
|
#define SUPPORT_OPTICAL true
|
|
#define SUPPORT_TAPE false
|
|
#define SUPPORT_MO false
|
|
#define SUPPORT_INITIATOR true
|
|
#define SUPPORT_CONTROL true
|
|
|
|
// Compatibility Settings
|
|
#define SUPPORT_SASI false // Enable SASI compatiblity for Sharp X68000
|
|
#define SUPPORT_SASI_DEFAULT false // Turn it on by default
|
|
#define SUPPORT_APPLE true
|
|
#define SUPPORT_APPLE_DEFAULT false
|
|
|
|
#endif /* __CONFIG_H */
|