This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

I2S timing

Hi,

I am currently testing a DAC with I2S input supplied by the nRF52832. But unfortunately no signal is coming out from the DAC, furthermore when reading the error registers on the DAC through i2c I get a clock error which indicates that the clock ratio is not valid. I have discussed this with Texas Instruments audio forum, but they tell me that the clocks are valid and they point out to rather check if the I2S timing from the nRF is correct. (link to Texas forum)

Is the I2S module on the nRF52832 set to follow the I2S timing specifications?(shown in this link) I wasn't able to measure those parameters, because my scope wasn't precise enough :(

The DAC which I am using is the TAS5760L, link to datasheet.

-Erblin

Parents
  • Hello Erblin

    With the settings you mention in your post at Texas Instruments you should have a LRCLK, and SCLK error of approximately 3.1% which is within the 10% specified in the I2S Specification.

    Both of these are also within the 4% Alex Bhandari-Young at TI's forum had found for a similar product.

    In the TAS5760L product specification, legal clock ratios for SCLK/LRCLK are 32, 48 and 64. With your settings, this ratio is 32. Legal clock ratios for MCLK/LRCLK is 64, 128, 192, 256, 384 and 512. With your settings, this ratio is 64.

    As of yet I have not found any specific reason the nRF52832 should not be compatible with the TAS5760L, as all values seem to meet the requirements. I see Alex Bhandari-Young with TI has requested more information on clock tolerances, it will be interesting to see what he finds.

    I have found a post on Texas Instruments' support forum, which seems similar to your issue e2e.ti.com/.../1797838 Please have a look and see if that can be of help.

    Best regards

    Jørn Frøysa

  • Hi,

    yes I have seen this post before and I have tried the solutions he suggested, but it wasn't working. I have used the DAC in both hardware & software(i2c) control mode, but both solutions didn't work.

    But I am starting to wonder if these specifications(chapter 7.7link to datasheet) of the serial audio port in the DAC may not be met from the nRF52832. I still haven't found any information in the infocenter in order to check if it is within the specs.

    I have tried changing the drive strength of the I2S pins, but I am unsure if i did it correctly, here is what I did after configuring the I2S:

    NRF_GPIO->PIN_CNF[MCK_SCK_PIN] = (GPIO_PIN_CNF_DRIVE_H0H1 << GPIO_PIN_CNF_DRIVE_Pos);  
    			NRF_GPIO->PIN_CNF[LRCK_PIN] = (GPIO_PIN_CNF_DRIVE_H0H1 << GPIO_PIN_CNF_DRIVE_Pos);  
    			NRF_GPIO->PIN_CNF[BCK_PIN] = (GPIO_PIN_CNF_DRIVE_H0H1 << GPIO_PIN_CNF_DRIVE_Pos);  
    			NRF_GPIO->PIN_CNF[SDOUT_PIN] = (GPIO_PIN_CNF_DRIVE_H0H1 << GPIO_PIN_CNF_DRIVE_Pos);
    

    Doing this made the I2C/TWI unstable and the DAC didn't acknowledge any of the transfers.

    -Erblin

Reply
  • Hi,

    yes I have seen this post before and I have tried the solutions he suggested, but it wasn't working. I have used the DAC in both hardware & software(i2c) control mode, but both solutions didn't work.

    But I am starting to wonder if these specifications(chapter 7.7link to datasheet) of the serial audio port in the DAC may not be met from the nRF52832. I still haven't found any information in the infocenter in order to check if it is within the specs.

    I have tried changing the drive strength of the I2S pins, but I am unsure if i did it correctly, here is what I did after configuring the I2S:

    NRF_GPIO->PIN_CNF[MCK_SCK_PIN] = (GPIO_PIN_CNF_DRIVE_H0H1 << GPIO_PIN_CNF_DRIVE_Pos);  
    			NRF_GPIO->PIN_CNF[LRCK_PIN] = (GPIO_PIN_CNF_DRIVE_H0H1 << GPIO_PIN_CNF_DRIVE_Pos);  
    			NRF_GPIO->PIN_CNF[BCK_PIN] = (GPIO_PIN_CNF_DRIVE_H0H1 << GPIO_PIN_CNF_DRIVE_Pos);  
    			NRF_GPIO->PIN_CNF[SDOUT_PIN] = (GPIO_PIN_CNF_DRIVE_H0H1 << GPIO_PIN_CNF_DRIVE_Pos);
    

    Doing this made the I2C/TWI unstable and the DAC didn't acknowledge any of the transfers.

    -Erblin

Children
No Data
Related