Post Go back to editing

working tutorial, eval adau 1467 and teensy4.1 to control it, in C

Thread Summary

The user is attempting to control an EVAL ADAU1467 board using a Teensy 4.1 via I2C. The solution involves connecting SCL to pin 7, SDA to pin 5, grounding ADDR1 (pin 8) to set the I2C address to 0x39, and ensuring pull-up resistors are present on the SCL and SDA lines. The user successfully detected the DSP at address 0x39 with an I2C scanner and is now ready to read register values. The EVAL board requires a power cycle to switch between SPI and I2C modes when using the USBi interface.
AI Generated Content
Category: Hardware

Hello, as i was not able to get a working solution with my esp32 in spi to control my eval adau 1467, this time i will try with another board i have and whose sister (teensy 4.0) was the chosen one by ADI for its tuto. We will try spi and i2c. The goal is to help the community to get started with all the needed details of the actions i will go thru to get the mcu control this eval board.

Edit Notes

Typos fix
[edited by: iravelo at 6:38 PM (GMT -4) on 31 Oct 2022]
Parents
  • Let’s start by noting all the needed signals for i2c : scl, sda, gnd; and also one gpio for reset, in total, 4 pins to use. 

    • Gnd will be the one in the upper left corner of the board,

    The i2c i choose is the one without suffix , so,

    • SCL is pin 19
    • SDA pin 18
    • Reset will be gpio OUT1C on pin 9
Reply
  • Let’s start by noting all the needed signals for i2c : scl, sda, gnd; and also one gpio for reset, in total, 4 pins to use. 

    • Gnd will be the one in the upper left corner of the board,

    The i2c i choose is the one without suffix , so,

    • SCL is pin 19
    • SDA pin 18
    • Reset will be gpio OUT1C on pin 9
Children
No Data