i am using TMS320dm6437 processor.i want to implement byte array in this. how to implement ?
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 am using TMS320dm6437 processor.i want to implement byte array in this. how to implement ?
I am not sure I properly understand your question, but a C data type of char on the DM6437 is a single byte so for example you could create an array like:
char myarray[72];
Which would create an array of 72 bytes, is this the sort of byte array you were looking for?