• Functions with multiple long params
    I've created a little test program that runs fine in the simulator, but causes the hardware (80C390) to reset when a function with multiple long parameters is called. This is with v6.22. Am I missing...
  • Problem with long value multiplication
    Dear sir, i used the compiler for long value multiplication it works good upto 69 multiplied by 10000. after that it doesn't show any error in compiling. it stores the values within 65536. After that...
  • 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...
  • mistake with Heap
    Hi! I use RTX. In my program except the others there are three processes Here they OS_MUT LOG_MUTEX; #define INIT_LOG_LOCK os_mut_init(LOG_MUTEX) #define LOCK_LOG os_mut_wait(LOG_MUTEX,0xFFFF...
  • Re: Long Integer Multiple Error
    Think you. I modified my source : printf("%lu * %bu = ", N, M); printf("%lu\n", Freq); Freq=25690112L; printf("%lu * %bu = ", Freq, 4); Freq*=4; printf("%lu\n", Freq); It work correctly...