Is there a way to memcpy the AdcRegs to a specific RAM location? (aka backup the entire AdcRegs block to RAM) I'm currently attempting to use the code below to copy the AdcRegs which are at address 0x007100 (size 128 bytes) to address 0x008800 which is allocated to the Data Page (1) via my linker file.
void * DRAM_L1 = (void *)0x008800; void * ADC_Reg = (void *)0x007100; EALLOW; memcpy(DRAM_L1,ADC_Reg,128); EDIS;
If I choose a different address like say 0x008000 then the contents of 0x008000 are copied just fine. Are their additional protections on the ADC Registers that would keep a memcpy from reading them?
Thanks,