ADAU1702
Production
The ADAU1702 is a complete single-chip audio system with a 28-/56-bit audio DSP, ADCs, DACs, and microcontroller-like control interfaces. Signal processing...
Datasheet
ADAU1702 on Analog.com
ADAU1701
Production
The ADAU1701 is a complete single-chip audio system with a 28-/56-bit audio DSP, ADCs, DACs, and microcontroller-like control interfaces. Signal processing...
Datasheet
ADAU1701 on Analog.com
Please excuse me if this post sounds a little silly, I am a real newbie and following the procedure to boot up with a microcontroller seems like a daunting task to me. Is a there a way to boot up with EEPROM with sigma studio and then use microcontroller only to update or change parameters? Lets say I want to turn/off a simple sine wave output to DAC0: in the capture window (output) I see 12 bytes of data is sent (see attachment). When I probe SCL and SDA lines to watch what happens on an oscilloscope I see lot more information is being sent than what is shown in the capture window. Can you please provide a simple explanation on what I need to do simply make small parameter changes to an already loaded program.
I was hoping to load the program on EEPROM of my 1701 minizeval board (and my own custom 1701 board) with SigmaStudio and then use Arduino to send commands to make simple parameter changes by emulating what is shown in the capture window (preferably over SPI).
Thanks.
Hello,
Working with SigmaStudio is like a walk in a beautiful park -- until you say the word microcontroller, then the ground opens up and you fall into the "digital snake pit" underneath. Once you find your way down there, you'll master booting and controlling your DSP as have many before you. I'm still not very comfortable down there either. In spite of this (or perhaps because of it!) here's a bit of help:
Size of write sequences: As you found out, there's more activity on the scope than the raw data suggests. Notice in the capture window that these are safeload writes. Writing parameters directly to a running DSP's memory causes awful noises, the safeload method avoids that. It does, however, involve more overhead, reflected in your scope trace. Safeload is described on pages 30 & 37 of the ADAU1701 data sheet; you can also search for its many references in this forum. Also, although the DSP takes 28-bit parameters padded to four bytes, actually each of them are five bytes long. There needs to be a dummy byte in the middle, for reasons described at https://ez.analog.com/thread/6429
Booting the -1701: In theory it's possible to self-boot and change to uC control afterward, yet this approach appears roundly discouraged in the forum -- see for example, https://ez.analog.com/message/14318#1431
Thus, I also suggest that you boot the -1701 from your micro. It may not be as difficult as it first appears. ADI's orthodox boot method involving C header files and such is designed to boot any SigmaDSP -- fortunately this is a bit more than what some older models need. At the risk of espousing heresy, here's a primitive boot procedure:
If anyone who has hooked up an Arduino to a SigmaDSP is willing to jump in here, that would be appreciated (I've only used PICs). Basically you have your Arduino get the DSP's attention over the SPI bus and set up its program memory's base address (0x0000). Write a loop that block-writes all 5120 bytes to the DSP. Do the same for the parameters (4096 bytes) and HW controls (24 bytes). Finally, write 0x00, 0x1C to your 1701's core control register at address 0x081C to enable the DSP core (must maintain core!).
Best regards,
Bob
Hello,
Working with SigmaStudio is like a walk in a beautiful park -- until you say the word microcontroller, then the ground opens up and you fall into the "digital snake pit" underneath. Once you find your way down there, you'll master booting and controlling your DSP as have many before you. I'm still not very comfortable down there either. In spite of this (or perhaps because of it!) here's a bit of help:
Size of write sequences: As you found out, there's more activity on the scope than the raw data suggests. Notice in the capture window that these are safeload writes. Writing parameters directly to a running DSP's memory causes awful noises, the safeload method avoids that. It does, however, involve more overhead, reflected in your scope trace. Safeload is described on pages 30 & 37 of the ADAU1701 data sheet; you can also search for its many references in this forum. Also, although the DSP takes 28-bit parameters padded to four bytes, actually each of them are five bytes long. There needs to be a dummy byte in the middle, for reasons described at https://ez.analog.com/thread/6429
Booting the -1701: In theory it's possible to self-boot and change to uC control afterward, yet this approach appears roundly discouraged in the forum -- see for example, https://ez.analog.com/message/14318#1431
Thus, I also suggest that you boot the -1701 from your micro. It may not be as difficult as it first appears. ADI's orthodox boot method involving C header files and such is designed to boot any SigmaDSP -- fortunately this is a bit more than what some older models need. At the risk of espousing heresy, here's a primitive boot procedure:
If anyone who has hooked up an Arduino to a SigmaDSP is willing to jump in here, that would be appreciated (I've only used PICs). Basically you have your Arduino get the DSP's attention over the SPI bus and set up its program memory's base address (0x0000). Write a loop that block-writes all 5120 bytes to the DSP. Do the same for the parameters (4096 bytes) and HW controls (24 bytes). Finally, write 0x00, 0x1C to your 1701's core control register at address 0x081C to enable the DSP core (must maintain core!).
Best regards,
Bob