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.

TMS320F280039C: 在不使用MCAN Message RAM的情况下如何使0x58000——0x5A000地址当作普通RAM存储实时数据

Part Number: TMS320F280039C

*(Uint16 *)(0x58000) = 5;
*(Uint16 *)(0x58001) = 6;
*(Uint16 *)(0x58002) = 7;
*(Uint16 *)(0x58003) = 8;

这么写做测试行不通,发现相邻地址数同时变例如:只写*(Uint16 *)(0x58000) = 5;0x58001地址也会变相同的数,怎么才能解决各地址保存各自的数据