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.
工具/软件:Code Composer Studio
您好!
我正在尝试读取协奏曲 C2000端的共享 RAM。 因此、我想读取每个存储器地址以查找我在 ARM M3端编写的特定指令、但我不知道确切的位置。
这就是我所做的:
#pragma DATA_SECTION (缓冲区、"Shared0")
uint32缓冲器;
uint32 *p;
P =缓冲区(&F);
if (*p =0xXXXXXXXX)
.
否则{p =(uint32 *) p + 1;}
为什么它不起作用? 在调试模式下、它只忽略所有指针指令。
我使用步进模式进行调试。 不管用。 但当我开始使用断点时。 它工作正常。
谢谢你。