• Float to UART
    i need to display a floating point number ranging from 0.1 to 0.001 over uart here is what i managed to search from forums and what not unsigned long *chptr; float f=0.1; void main() { PINSEL0=0x5;...
  • Floating Point
    How I can deny a number floating point, without using some mathematical operation (eg. :number * (-1)). ?? How can I take the first 8 bits of the number???
  • float to ascii
    Dear colleages, I would like to know if there is some one on earth that have a routine to convet a number from float to ascii. I want to show a float point number on a display of 16x2. An example...
  • double float
    The C51 can't support double(8-byte) variable. Does anyone know the third party liberary to support this function?
  • floating point
    Hi every body I don't know why I don't have the float part of the temp var. float temp; int H_Value; int L_Value; int value = 55; temp = value / 10; H_Value = (int)temp; L_Value = (int)(temp...