This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

音频信号的输出

怎样将AD模块采集到的声音的振动信号,通过DSP的音频输出播放出音乐;例子里面都是通过外界输入比如手机或电脑通过3.5的音频线输入后再输出的,我想直接输出DSP采集、处理后的信号,请问有什么办法。

  • 通过mcasp口外挂DAC。
  • 你好,外挂音频芯片后使用I2S协议,但是我要输出的数据是int 型的(32位),I2S默认的slot是16位的,所以我把例子中的SLOT_SIZE 和WORD_SIZE改成了(32u),结果原本可以放出音乐的例子放不出音乐了.请问这个怎么解决。
    // AIC3106 I2C从地址
    #define I2C_SLAVE_CODEC_AIC31 (0x18u)

    // I2S 使用2个 slot
    #define I2S_SLOTS (2u)

    // 发送/接收 slot 大小
    #define SLOT_SIZE (16u) //modified to 32u

    // 发送/接收数据 word 大小. Word size <= Slot size
    #define WORD_SIZE (16u) //modified to 32u