Hi i want to transmit a float over serial port without use of any library because library takes lots of memory. Thanks for your help in advance
"... library takes lots of memory." What library? Are trying to avoid something like sprintf() to convert the float to ASCII for transmission? If so, then simply send the bytes of the float in binary.
If minimising memory is such a concern, why are you using floats in the first place...?!