• Whats happening here ??
    Hallo everybody, got myself another problem.... not exactly a problem... i think The thing is i would like to know whats happening in this output: printf("AIN[%d][%d] = %u.%.3u V\n",m,n,(int...
  • what happened to 8052.com
    Anyone knows what is going on with 8052.com ?
  • What happened to my EZREGS.INC file?
    I have a sample *.a51 program that includes this file, but the file is not to be found anywhere on my hard drive. I have installed the ezusb development tools from cypress and the keil uv3 tools as well...
  • not used functions linked and declares XDATA for local vars
    Hello, I have detected that some functions like this one are using their own XDATA space instead of using the XDATA_GROUP for local purposes: for example this one: void zmemcpy2(UINT8 *dst...
  • The 'sscanf' mistake
    sscanf(buffer, "%d", &var1_1byte); in the above case, var1_1byte is uint8_t (ie 1 byte char variable). the "%d" in sscanf resulted to writing of multiple bytes (notice that '%d' is for 'int') which...