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.

MSPM0C1104: what is the api to read from flash

Part Number: MSPM0C1104


Tool/software:

hi, experts:

     I found APIs from dl_flashctl.c, such as write to flash(DL_FlashCTL_programMemoryFromRAM8), or read and verify from flash(DL_FlashCTL_readVerify8), but I didn't find a simple read API to read from flash, can you help me with that? Thanks.

Bill

  • Hi Bill

    There is no read API  on flash(DL_FlashCTL_programMemoryFromRAM8) and read and verify from flash(DL_FlashCTL_readVerify8) because it is just address read

    you can refer to this code:

    unsigned int value;

    value = *( unsigned int * )( 0x00000000 );

    Thanks!