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.
请问在CCS中uint32_T、int16_T、uint8_T、UNSIGNED32、UNSIGNED8、INTEGER16类型数据,分别是多少位?Output format is EABI。
您好
请您参考
uint8_T / UNSIGNED8
unsigned char
类型,占用1字节内存空间int16_T / INTEGER16
signed short int
类型,占用2字节内存空间uint32_T / UNSIGNED32
unsigned int
类型,占用4字节内存空间