qipp
2025-11-07 1db34b4e65f72d8ae8b1f0efbc7a4395f9bbcae8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#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