SBAU443 November   2023

 

  1.   1
  2.   Description
  3.   Get Started
  4.   Features
  5.   Applications
  6.   6
  7. 1Evaluation Module Overview
    1. 1.1 Introduction
    2. 1.2 Kit Contents
    3. 1.3 Specification
    4. 1.4 Device Information
  8. 2Hardware
    1. 2.1 System Overview
    2. 2.2 Hardware Overview
      1. 2.2.1 AC-MB Settings
        1. 2.2.1.1 Audio Serial Interface Settings
          1. 2.2.1.1.1 USB
          2. 2.2.1.1.2 18
          3. 2.2.1.1.3 Optical or Auxiliary Analog Audio Input
          4. 2.2.1.1.4 External
        2. 2.2.1.2 AC-MB Power Supply
      2. 2.2.2 PCMx140Q1EVM-PDK Hardware Settings
        1. 2.2.2.1 Line Inputs
        2. 2.2.2.2 Onboard Microphone Input
  9. 3Software
    1. 3.1 Software Overview
      1. 3.1.1 PurePath Console 3 Installation
      2. 3.1.2 PCMx140Q1EVM GUI Installation
        1. 3.1.2.1 Software Setup
    2. 3.2 Quick Start
      1. 3.2.1 Configuring the Audio Serial Bus for the I2S Output
      2. 3.2.2 32
      3. 3.2.3 Saving a Configuration
    3. 3.3 Matlab Audio Capture Example
  10. 4Hardware Design Files
    1. 4.1 PCMx140Q1EVM-PDK Schematic and Bill of Materials
      1. 4.1.1 PCMx140Q1EVM-PDK Schematic
      2. 4.1.2 PCB Layouts
      3. 4.1.3 PCMx140Q1EVM-PDK Bill of Materials
    2. 4.2 AC-MB Schematic and Bill of Materials
      1. 4.2.1 AC-MB Schematic
      2. 4.2.2 PCB Layouts
      3. 4.2.3 AC-MB Bill of Materials
  11. 5Additional Information
    1. 5.1 Trademarks
  12. 6Related Documentation

Matlab Audio Capture Example

The driver for the AC-MB can be controlled with Matlab, allowing for some automated testing. The following code demonstrates capturing audio from the AC-MB with Matlab. This example requires the 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);