主题中讨论的其他器件:C2000WARE
在 F280049C 的 C2000ware 中、有类似的代码
uint32_t arbReg = 0U;
根据我的理解、uin32_t 是无符号长整型、因此代码应如下所示
uint32_t arbReg = 0UL;
这种差异的原因是什么? 我缺少什么吗?
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.
在 F280049C 的 C2000ware 中、有类似的代码
uint32_t arbReg = 0U;
根据我的理解、uin32_t 是无符号长整型、因此代码应如下所示
uint32_t arbReg = 0UL;
这种差异的原因是什么? 我缺少什么吗?
您可以参阅以下链接中 C2000编译器用户指南中的数据类型部分
https://www.ti.com/lit/pdf/spru514?keyMatch=SPRU514R
此致
Siddharth
如何执行此操作?