Fix configuration of lib_mic_array with < 8 mics
This commit is contained in:
@@ -3,6 +3,8 @@ sc_usb_audio Change Log
|
||||
|
||||
6.30.0
|
||||
------
|
||||
- RESOLVED: Number of PDM microphone channels configured now based on
|
||||
NUM_PDM_MICS define (previously hard-coded)
|
||||
- RESOLVED: PDM microphone clock divide now based MCLK defines (previously hard-coded)
|
||||
- CHANGE: Second microphone decimation core only run if NUM_PDM_MICS > 4
|
||||
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
#ifndef MIC_ARRAY_CONF_H_
|
||||
#define MIC_ARRAY_CONF_H_
|
||||
|
||||
#include "customdefines.h"
|
||||
|
||||
#define MIC_ARRAY_MAX_FRAME_SIZE_LOG2 0
|
||||
#define MIC_ARRAY_NUM_MICS 8
|
||||
#define MIC_ARRAY_NUM_MICS (NUM_PDM_MICS)
|
||||
|
||||
#endif /* MIC_ARRAY_CONF_H_ */
|
||||
|
||||
Reference in New Issue
Block a user