Skip to content

Commit

Permalink
Updated airspy_rx version to 1.0.5
Browse files Browse the repository at this point in the history
Modified display of "Streaming at xx.xxx MSPS" with 3 digits instead of 2 digits
  • Loading branch information
bvernoux committed Apr 23, 2016
1 parent 1efcd9a commit 398a0a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airspy-tools/src/airspy_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#include <errno.h>
#include <limits.h>

#define AIRSPY_RX_VERSION "1.0.4 23 April 2016"
#define AIRSPY_RX_VERSION "1.0.5 23 April 2016"

#ifndef bool
typedef int bool;
Expand Down Expand Up @@ -1042,7 +1042,7 @@ int main(int argc, char** argv)
(do_exit == false) )
{
float average_rate_now = average_rate * 1e-6f;
sprintf(str, "%2.2f", average_rate_now);
sprintf(str, "%2.3f", average_rate_now);
average_rate_now = 9.5f;
printf("Streaming at %5s MSPS\n", str);
if ((limit_num_samples == true) && (bytes_to_xfer == 0))
Expand Down

0 comments on commit 398a0a5

Please sign in to comment.