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.

[参考译文] AWR6843ISK:C674 DSP 子系统上的_amem8 库存在问题

Guru**** 2439710 points
Other Parts Discussed in Thread: AWR6843ISK

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

https://e2e.ti.com/support/sensors-group/sensors/f/sensors-forum/1537595/awr6843isk-facing-issue-with-_amem8-library-on-c674-dsp-subsytem

器件型号:AWR6843ISK


工具/软件:

尊敬的 TI 团队:

 我使用 AWR6843ISK 器件、并尝试   使用 CCS 调试器 12.0 版本在 C674 DSP 子系统上测试代码。

我使用 _amem8 () DSP 库将   8 字节数据存储到(存储器中/从 存储器中加载 8 字节数据)。 我的要求是  在将值加载到内存之前查看_amem8 () 值的内容。

我使用以下代码、但无法获得正确的数据。

int main()

int64_t *outputSamples[16];

int64_t * output1;

Output1 =(int64_t *)&outputSamples[0]

output2 =(int64_t *)&outputSamples[2]

_amem8 (output1++)= 0X0000001200000020;
_amem8 (output2++)= 0X0000004000000030;

}

我的问题:

如何打印或存储发送到存储器的值“ _amem8 (output1++)“到用户定义的变量中?

此致、

Mani