• long params
    I'm having some bizarre behavior with functions that take multiple long values as parameters. If I change them to ints, all is fine, but if they are longs the target locks up on the function call. The...
  • C51 long multiple mistake
    Hi: I use c8051f410, Program Size: data=114.1 xdata=100 code=4633 I had to use the long multiple in program and find it can not be excecute properly. The code is as below, Is this stack...
  • 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...
  • Passing Params when using RTX
    I am running into an issue that when I pass parameters to a function from a task, the variable is not accessible and the data turns out to be zero. I have tried to make the params pointers to the...
  • 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...