• How to convert type uint32_t to float??
    Hi, I try to read value of timer of STM32L152VD and convert it to float type. The way I use is first define the below union: typedef union { uint32_t timercount; float flowtime; }union_timercount;...
  • double float
    The C51 can't support double(8-byte) variable. Does anyone know the third party liberary to support this function?
  • support for negative double float types in arm c
    Hello keil Does keil arm C support negative double or float if not How I can use negative float numbers
  • Double data type
    Hello, I was wondering if anyone has (or could point me in the direction of) source code or algorithms for performing 64 bit addition, subtraction, multiplication and division on the 8051. I'm aware...
  • converting types
    hi Forum, how can i convert items in a Array from typ Char[] in an Integer-Type? example: char data[] = "110111"; int sum = 0; sum = (int)data; or should i sum the all items in the array...