ZHCUCK9 December   2024 TAA3040

 

  1.   1
  2. 说明
  3. 特性
  4.   4
  5. 商标
  6. 评估模块概述
    1. 4.1 引言
    2. 4.2 套件内容
    3. 4.3 规格
    4. 4.4 器件信息
  7. 硬件概述
    1. 5.1 AC-MB 设置
      1. 5.1.1 音频串行接口设置
        1. 5.1.1.1 USB
        2. 5.1.1.2 AC-MB USB 音频设置
        3. 5.1.1.3 光学或辅助模拟音频输入
        4. 5.1.1.4 外部
      2. 5.1.2 AC-MB 电源
    2. 5.2 TAA3040EVM-PDK 硬件设置
      1. 5.2.1 线路输入
      2. 5.2.2 板载麦克风输入
  8. 软件概述
    1. 6.1 PurePath Console 3 安装
    2. 6.2 安装 TAA3040EVM GUI
      1. 6.2.1 软件设置
  9. 快速入门
    1. 7.1 为 I2S 输出配置音频串行总线
    2. 7.2 即时可用
    3. 7.3 保存配置
  10. 系统概述
  11. 原理图和物料清单
    1. 9.1 TAA3040EVM-K 原理图和物料清单
      1. 9.1.1 ADCx140EVM-PDK 原理图
      2. 9.1.2 TAA3040EVM-K 物料清单
    2. 9.2 AC-MB 原理图和物料清单
      1. 9.2.1 AC-MB 原理图
      2. 9.2.2 AC-MB 物料清单
  12. 10Matlab 音频捕获示例

Matlab 音频捕获示例

可以使用由 Matlab 控制的 AC-MB 驱动器,同时允许进行一些自动测试。下面的代码演示了如何使用 Matlab 从 AC-MB 捕获音频。此示例需要使用 Audio Toolbox™

         if ismac % macOS driver 
 deviceReader = audioDeviceReader( 'Device', 'TI USB Audio 2.0',… 
 'SampleRate', 48000, … 
 'NumChannels', 8 ,…
'BitDepth', '32-bit float',… 
'OutputDataType','double'); 
 elseif ispc % windows driver
 devoiceReader = audioDeviceReader( 'Driver','ASIO', 'Device', 'Texas Instruments USB Audio ...',…
 'SampleRate', 48000, … 
 'NumChannels', 8 ,… 
 'BitDepth', '32-bit float',… 
 'OutputDataType','double’);
end
setup(deviceReader);% Setup the device reader
% Play out a file through PC and capture in the EVM
info = audioinfo( infile_name );% Read audiophile infile_name
fileReader = dsp.AudioFileReader( infile_name );% Create fileReader object
fileInfo   = audioinfo(infile_name);% Copy info from infile_name
fileWriter = dsp.AudioFileWriter( outfile_name, 'SampleRate', deviceReader.SampleRate, 'DataType', 'int32’);% Create fileWriter object
audioOut = audioDeviceWriter('SampleRate', fileInfo.SampleRate);% Setup audio playback
setup( audioOut, zeros(deviceReader.SamplesPerFrame, fileInfo.NumChannels) );
while ~isDone(fileReader)% For each block played out, record the block from EVM
audioToPlay = fileReader();% Read a chunk of audio from infile_name
audioOut(audioToPlay);% Play a chance of audio
[audioRead, numOverrun] = deviceReader();% Grab a chunk of audio from EVM
fileWriter(audioRead);% Write the chunk of audio from EVM to a file
end
release(audioOut);% Close all objects
release(fileReader);
release(fileWriter);
release(deviceReader);