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:要从闪存读取的 API 是什么

Guru**** 1831610 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/microcontrollers/arm-based-microcontrollers-group/arm-based-microcontrollers/f/arm-based-microcontrollers-forum/1387188/mspm0c1104-what-is-the-api-to-read-from-flash

器件型号:MSPM0C1104

工具与软件:

大家好、专家:

   我从 dl_flashctl.c 中找到了 API、例如写入闪存(DL_FlashCTL_programMemoryFromRAM8)、或从闪存(DL_FlashCTL_readVerify8)读取和验证、但我没有找到可从闪存读取的简单读取 API、您能为我提供帮助吗? 谢谢。

法案

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

    您好、Bill

     闪存(DL_FlashCTL_programMemoryFromRAM8)上没有读取 API、并从闪存(DL_FlashCTL_readVerify8)读取和验证、因为它只是读取地址

    您可以参考以下代码:

    无符号整数值;

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

    谢谢!