Baud and aquisition rate.
Panichou
Posts: 3
Hi I am using PLX-DAQ to send data from an Arduino to an excel datasheet.
Can I link the baud rate set in the code and the aquisition frequency to the datasheet ?
( I can explain my project a little more if needed ! )
Thank you.
Can I link the baud rate set in the code and the aquisition frequency to the datasheet ?
( I can explain my project a little more if needed ! )
Thank you.
Comments
Is it possible or does it depend on my computer ( R.A.M, microprocessor speed, etc ) ?
At 128,000 baud that would take (110 / 128000) = 0.000859 seconds or just under 1 millisecond.
NOTE: 128,000 is NOT a standard baud rate. 115,200 and 230,400 are standard baud rates.
Bean
So considering what you are saying, the line " 270 " would take 30 bits ?
I did not know that 128 000 wasn't a standard rate. For an academic project I am studying low fi ADC and amplification with a microcontroller, I just wanted to compare the qcuisition with a low baud ( 9600 ) and the highest ( plx-daq highest is 128 000 ).
Thank you.
Parinya
Bean
For transmission, there are stop bits, parity bits, and other protocol elements, like break etc. So it works out they way these are typically set results in 10 bits used to transmit each 8 bit byte.
There are other things that introduce additional delays, such as latency in the PC from OS, etc. After you figure the "ball park range" you run a test to compare actual through put to estimated throughput.