IDAC with DMA

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
lock attach
Attachments are accessible only for community members.
jofic_334026
Level 3
Level 3
First like received

I'm using the CY8C4247AZI-M485.  I want to use the IDAC component with the DMA to generate a sine wave.  I believe I have everything set up correctly but it's not working.  In the "DMA Support" section of the IDAC datasheet it states the following:

   

Note DMA support in the IDAC_P4 component is limited due to the following reasons:

   

 The IDAC_1_IDAC_CONTROL register is common for two IDACs (8-bit IDAC and 7-bit IDAC).

   

 The IDAC_1_IDAC_CONTROL register is common for the IDAC setting and IDAC data.

   

Before using the DMA channel with the IDAC_P4 component, review the description of this register in the device registers Technical Reference Manual (TRM).

   

I've searched for "IDAC_CONTROL" in the TRM but couldn't find anything. 

   

Can someone tell me if this is even possible with this PSOC?  If so, what am I doing wrong?

0 Likes
3 Replies
lock attach
Attachments are accessible only for community members.
odissey1
Level 9
Level 9
First comment on KBA 1000 replies posted 750 replies posted

jfix,

   

Attached is a wave DAC generation project for P4M. The DMA transfer to IDAC on P4 is tricky, it has to be 2 bytes, with MSB set to 0x07, and LSB is actual IDAC value (so RAM array must be 16-bit instead of 8-bit). This MSB is configuration setting for IDAC, controlling current output/bit, which has to be set on each DMA transaction. The DMA trigger has to be set to "unknown width". Max frequency achievable is lower than for PSoC5, reaching ~13.4 kHz @256 points/waveform, but the DAC output quality is better (no bit flipping glitches). Unlike PSoC5, on P4 DMA has no "nrq" signaling the end of Buffer transfer, instead the DMA internal irq and a PinLED are used to for that purpose.

   

   

   

0 Likes

Awesome! Thank you so much! 

   

Question#2:

   

I have an array of 360 values.  Each represents 1 degree of a sine wave.  I figured I could create any frequency (0-20KHz) by just increasing the "Clock_DAC" frequency.  This doesn't appear to be the case.  The maximum output frequency I can create is ~2KHz even as I increase the "Clock_DAC" frequency up to 6 MHz.  What's limiting me?

0 Likes
odissey1
Level 9
Level 9
First comment on KBA 1000 replies posted 750 replies posted
        The limiting factor is DMA transfer rate. Setting HFCLK 48 MHz, and using 256 points per waveform, the maximum frequency obtainable was 13.4 kHz, which gives number CPU clocks for single DMA transfer is 48MHz / 13.4 kHz / 256 points = 14 ticks, which is about right for PSoC4. The DMA speed on P4 is slower than on P5 and in this case 2 bytes have to be transferred. To get close to 20 kHz you need to set HFCLK to 48MHz, Clock_DMA to 7MHz, and to reduce amount of waveform points to about 180. Adjusting Clock_DMA using clock divider will give rough granularity on the output frequency at 20kHz limit. You can either vary the number of points per waveform for better control or use some fine control of the DMA clock using DDS: http://www.cypress.com/forum/psoc-community-components/dds24-24-bit-dds-arbitrary-frequency-generato... http://www.cypress.com/forum/psoc-5-device-programming/psoc-verilog-how-big-design-can-one-make#comm...   
0 Likes