How do I access, and give a value to, precise individual byte of a 16bit (word) array ??
Quickest possible code, on ARM cortex-M. ?
Like this? Well, I guess it dont compile, so this must not be it.
For example.
int16_t bufferk[6];
const uint8_t mask1=1;
.........
while(1){
.....
(uint8_t*)&bufferk[0]=mask1;
}