• Will KEIL company updata GCC331.exe for keil IDE in future?
    I wonder whether the KEIL company will updata the GCC331.exe(GNU compiler for keil) to the new version? I find in the download page that the GCC331.exe has not been updata for a long time. So I...
  • when #ifdeffing a testsnippet
    when #ifdeffing a testsnippet it is, often, desirable to be able to do this: code .... code .... #ifdef DOIT BOOL flag if (flag) .... Keil does not allow definitions in the middle of a routine...
  • when stack overfolw in microcontroller
    IN C-language:- #include<stdio.h> int main() { while(1) { printf("hai\n"); } } output: hai hai hai . . . like this upto stack overflow IN EMBEDDED c:- #include<reg51.h> sbit led=P1^0; int...
  • Trouble when simulate
    Why uVision2 does not simulate 8952. This compiler does not understand 8952 register(example TR2, T2MOD, T2CON...) Nguyen The Son
  • When TCPnet supports raw socket?
    Hi,all I am using TCPnet on my board.It works well. I need to write a 'ping' tool in the board,and I found that TCPnet supports UDP socket/TCP socket/BSD socket.But BSD socket does not support raw socket...