Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations SDETERS on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Floating point MSComm question

Status
Not open for further replies.

MikeMM

Automotive
Feb 1, 2005
17
I'm working on a project where I have to send data from my computer to a microcontroller through a serial port. I'm using the mscomm control which comes with vb5 to send the information. Some of the data I have to send to the microcontroller is single floating point numbers and as I understand it you can't send anything other than bytes through mscomm. So my question is how can I divide up the floating point numbers into 4 bytes that can be reconstructed at the other end of the serial port?

The microcontroller program is written in c and is using the << command with the incoming bytes to put them in the correct spot in a floating point variable.

thanks for your help
 
Replies continue below

Recommended for you

Are you sure it is C and not C++. << is a shift operator in C. In C++, it can be either shift or input.

The problem with floating point numbers is internal storage. The easiest way is to send it in text from, if there isn't a performance hit. Convert your number to a string using cstr and then transfer the data one byte at a time, possibly using mid to get each character.

Another alternative is to scale up the number, pass it as an integer and then scale it down on the other side. eg your scale factor is 100. Watch out for big/little endian problems if you are doing this. Intel to Intel is fine but Intel to Motorola/PIC has problems.
 
Don't understand what the problem is. You're presuambly using a 32-bit floating point number in PC and ditto in MC.

Read all 4 bytes into pointer to floating point in MC.

TTFN



 
Why would you waste time converting a 4-byte number into text form, transmit the ASCII equivalent that would take 20+ bytes, and then waste even more time to convert it back to a 4-byte number? Transmit the 4 bytes and be done with it.


Dan - Owner
Footwell%20Animation%20Tiny.gif
 
thank you all for your help the problem is now solved.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor