Hi list,
I just hit a problem that I worked around easily, but want to have some advice/better way/alternatives about.
I need to send commands in plain ascii to an appliance (an integrated servo motor) via comport. Say:
VT=1965093 (for target velocity)
By default, numbers over 100000 gets converted to scientific notation, so this is what gets sent:
VT=1.965093e+06
Of course the motor ignores the message.
I added a [makefilename %d] before the [print VT=$1( message and it does work well.
I was wondering if there's another way avoid scientific notation ?
Thanks,