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.
I would like to know how is it stored a char in the memory on the TMS320F280X? Does it make advantages by using char instead of short? Does it use the same memory or not?
Hello Robert!
You can refer to this UG 5756.TI_TMS320C28x Optimizing C_spru514f.pdf.
unsigned char a = 0, b = 0xff, c = 0xaa;
a = b<<8 + c; // a = 0xffaa
Regards,
Igor
Hi Igor,
Thank you for your reply, I thought the char is stored on 8bits, but now everything is clear.
Regards,
Robert