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.
Do we have any bit-addressable memory in this controller ? If yes how to access a variable bit-wise in c when we have declared it in above mentioned memory space?
Kumar,
There is no bit addressable memory in the controller. If you want bit access, one way to do it in C is to use a structure with bit-field definitions. The compiler will generate efficient code for this.
Regards,
David