• KeilC51 can not compile this code correctly
    hi: I have a code below: char pop_value = 0X80; if(pop_value == 0X80) { pop_value = pop_value;//point 1 } pop_value = pop_value;//point 2 I would have thought the code would jump to point...
  • KeilC51 can not compile this code correctly
    hi: I have a code below: char pop_value = 0X80; if(pop_value == 0X80) { pop_value = pop_value;//point 1 } pop_value = pop_value;//point 2 I would have thought the code would jump to point...
  • How can I activate the Source Browser if I am using the Realview compiler?
    I am trying to activate the Source Browser when I am using the Realview compiler. With the CARM compiler I do not have any problen but with Realview I can not find any option to activate browser information...
  • How can I activate the Source Browser if I am using the Realview compiler?
    I am trying to activate the Source Browser when I am using the Realview compiler. With the CARM compiler I do not have any problen but with Realview I can not find any option to activate browser information...
  • Why the link list can not be assignment correctly?
    typedef struct { char * SongName; unsigned char * SongDir; unsigned int SongIndexInGroup; unsigned int SongPlaying; }SongInformation; typedef struct song_link { SongInformation SongInfo; unsigned...