最近在调试USB音频功能,在nano130KE3BN上测试了官方提供的例程,其中采样率都是16K,例程可以正常运行。
目前我想把采样率修改成 8K
/*!<Define Audio information */
#define PLAY_RATE 8000 /* The audo play sampling rate. The setting is 8KHz */
#define PLAY_CHANNELS 2
#define PLAY_BIT_RATE 0x10 /* 16-bit data rate */
#define REC_RATE 8000 /* The record sampling rate. It is 8KHz */
#define REC_CHANNELS 1
#define REC_BIT_RATE 0x10 /* 16-bit data rate */
这样的话,无**常运行,不知道还需要修改哪里,大家帮忙看看
|