• why not?
    I cannot enter the forum
  • Why not?
    How come I can do this: char LCDstring[] = "ABC"; ACC = LCDstring[0]; Print an A to LCD But I cannot do this: int z = 0; ACC = LCD[z]; Print an A to LCD
  • help! why?
    my codes: unsigned int i=0; void Timer(void) interrupt 1 { i++; } void Main (void) { while (1) printf ("i=%d\n", i); } I had thought that I will get below on serial window " i=0; i...
  • why the warning?
    U16 FFSStemq; STR_SUBF code *s_subf; ... FFSStemq = (U16 *) s_subf; U16 is unsigned short, STR_SUBF is a structure. the line of code (FFSStemq = ... ) gives WARNING C260 '=' pointer truncation. nothing...
  • why this happnnimg
    This is happinning to 3rd time with me the program is properly working on simulator with "DAT_LOG" - 0 Error(s), 0 Warning(s). but not on the hard ware hardware is not faulty because programe...