Hello,
Originally I planned on using the DMA controller to move a value around memory during an interrupt, but after reviewing the MSP430F2274 datasheet I realized that there was no DMA controller present. With that said, how could I move the value around in memory? There is not much documentation about the intrinsic functions like "__data20_write_short" to help understand if these functions will be useful. Without having a DMA controller, is there an alternative method to moving a value around in memory that is 1024 bits in size? It seems trivial and incorrect to use the function "__data20_write_char" 28 times consecutively to achieve this task. Thank you.
Also, is there any documentation which gives a more descriptive documentation about the intrinsic functions incorporated in CCS and the MSP430? The help contents page only lists them without much information about what they do (although most are implied).