We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi, help me to understand, what is wrong here: When I wrote:
void main() { unsigned char t; t = 0x20; t |= 0x30; t = 0x21; // <- in debuger t=0xF5 !!! initProc(); IOSET = 0x0C; }
void main() { unsigned char t; t |= 0x20; t = 0x30; t = 0x21; // <- now t=0x21 !!! initProc(); IOSET = 0x0C; }
void main() { unsigned char t=0x20; t |= 0x30; t = 0x21; // <- now t=0xF5 again! :( WHY??? initProc(); IOSET = 0x0C; }
Thanks, now I see.