This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AWR2944: "BUFF_OVF" error occurs when writing ADCBUF using DMM

Part Number: AWR2944

I am trying to write data to ADCBUF via DMM, below are my writing steps:
1. reset DMM_B
    *(volatile uint32_t *)0x03F79E00U = 0x00010000U;
    *(volatile uint32_t *)0x03F79E00U = 0x00000000U;
2. DMM_B Pins set(8pin)
    *(volatile uint32_t *)0x03F79E6CU = 0x000403FFU;
    *(volatile uint32_t *)0x03F79E8CU = 0x000403FEU;
3. DMM_B Direct Data Mode, debug mode, CONTCLK, DDM_WIDTH(32bit)
    *(volatile uint32_t *)0x03F79E00U = 0x0006050AU;
4. DMM_B Destination ADCBUF(0xA4000000), 32KB
    *(volatile uint32_t *)0x03F79E1CU = 0xA4000000U;
    *(volatile uint32_t *)0x03F79E20U = 0x0000000BU;
5. Write 3072byte data using fpga

Then I read ADCBUF (0xA5000000) in CCS, and the actual written data length is 258H, INTFLAG.BUFF_OVF flag is set. Are my configuration steps wrong?