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.

如何使用指针读取数据存储器

Other Parts Discussed in Thread: TMS320LF2407A

大家好,请教大家一个问题。TMS320LF2407A。

ADC采样结果寄存器RESULT0的地址是0x7408。

unsigned int *p = (unsigned int*)0x7408;

x = *p;

y = *(p + 1);

能否这样访问RESULT0和RESULT1?