X-Git-Url: http://developer.intra2net.com/git/?p=libftdi;a=blobdiff_plain;f=examples%2Fbaud_test.c;h=029164ae7acf5560caa72bc1674110accd25616f;hp=f6bcac9e6fe35e20d38a154c115ba53999fe7482;hb=39c9dbfc467f9baf2fbeea3c70ae210fca5ec7ab;hpb=f44dbec230aaa0835be8be7d4581394ed4a92435 diff --git a/examples/baud_test.c b/examples/baud_test.c index f6bcac9..029164a 100644 --- a/examples/baud_test.c +++ b/examples/baud_test.c @@ -186,12 +186,12 @@ int main(int argc, char **argv) if(test_mode==BITMODE_SYNCBB) { // read the same amount of data as sent - ftdi_read_data(&ftdic, rxbuf, txchunksize); + ftdi_read_data(&ftdic, rxbuf, sendsize); } } duration=get_prec_time()-start; - printf("and took %.4f seconds, this is factor %.3f\n",duration,plan/duration); + printf("and took %.4f seconds, this is %.0f baud or factor %.3f\n",duration,(plan*baud)/duration,plan/duration); ftdi_usb_close(&ftdic); ftdi_deinit(&ftdic);