5 uint8_t byteArray
[8] = {0};
7 uint16_t wordArray
[4] = {0};
9 uint32_t dwordArray
[2] = {0};
11 int main(int argc
, char** argv
) {
18 for (i
= 0; i
< 8; i
++)
20 printf("About to write byteArray[%d] ...\n", i
); // About to write byteArray
24 localByte
= byteArray
[i
]; // Here onwards we should'nt be stopped in loop
26 localByte
= byteArray
[i
];
32 for (i
= 0; i
< 4; i
++)
34 printf("About to write wordArray[%d] ...\n", i
); // About to write wordArray
38 localWord
= wordArray
[i
]; // Here onwards we should'nt be stopped in loop
40 localWord
= wordArray
[i
];
46 for (i
= 0; i
< 2; i
++)
48 printf("About to write dwordArray[%d] ...\n", i
); // About to write dwordArray
52 localDword
= dwordArray
[i
]; // Here onwards we shouldn't be stopped in loop
54 localDword
= dwordArray
[i
];