Javelin Terminal Update Speed.
dkwon
Posts: 13
Hello,
I am using Javelin to get various sensor data (force, accelerometer, digital compass). I am very suffering from the speed.
I·observe the sensor value update through the Javelin Terminal using the System.out.println thing.
Javelin Terminal update speed is real speed? Or it will be much faster inside Javelin?
Best
Doo Young Kwon
·
I am using Javelin to get various sensor data (force, accelerometer, digital compass). I am very suffering from the speed.
I·observe the sensor value update through the Javelin Terminal using the System.out.println thing.
Javelin Terminal update speed is real speed? Or it will be much faster inside Javelin?
Best
Doo Young Kwon
·
Comments
is printed to the javelin ide message window. So this is real speed.
Problem is that the javelin not only transmits your data bytes but also metadata bytes
to·comply to the javelin protocol, and this is a foreground task.
The best option to increase speed is to use a transmit uart and hyperterminal at the pc.
Then only your databytes are transmitted, and they are transmitted in the background,
so your mainloop will loop faster.
If you go this option, don't use a baudrate above 9600 because ram access will not
allow a higher throughput anyway. Higher baudrates only consumes extra (background) CPU cycles.
regards peter
Thanks alot!