Need suggestions on my applcation:
I’ve been working with is developing a timing application that requires a bit more deeper knowledge of how the MSP430 DMA engine works in conjunction with TIMER A and TIMER B. I'm using the 5438A device with 16k of RAM; the limiting factor is memory, and I need to operate in a very low power state. Here’s what I'm trying to do:
- Generate a 12-bit 10us pulse in ½ second increments
- Use the DMA to trigger the Timer
- The timer count sequence is stored in RAM
- At 500ms refresh rates, I runs out of memory (would need upwards of 200k of RAM to store the values)
Can you point me in a direction that will give him me a better understanding of how I can work around his memory limitation?
-David