#ifndef CORE_CONFIG_H_
|
#define CORE_CONFIG_H_
|
|
#define MCLK 24576000
|
|
#define SAMPLE_RATE 48000
|
#define SAMPLE_NUM 64
|
|
#define SLOTS 2
|
//extern unsigned int SAMPLE_RATE;
|
//extern unsigned int SAMPLE_NUM;
|
#define SPI_BUFFER_SIZE (1024/2)
|
#define MAX_INPUT_NUM 16//64
|
#define MAX_OUTPUT_NUM 16//64
|
|
#define FEEDBACK_FILTERS_NUM 8 //
|
#define MAX_MIXER_INPUT 20
|
#define MAX_MIXER_OUTPUT 17
|
|
#define MAX_EQ_SECTION 8
|
#define AUTOMIXER_CHANNELS_NUM 16
|
|
#define MAX_DELAY_MSEC 200
|
|
//#define DEBUG
|
#ifdef DEBUG
|
#define dbg_printf printf
|
#else
|
#define dbg_printf
|
#endif
|
|
#endif
|