From a82ffdbd4eb5b9f28d419b1a691aa244a57581e5 Mon Sep 17 00:00:00 2001 From: murrayma Date: Sat, 8 Apr 2023 14:13:48 -0400 Subject: [PATCH] Enable airspy USB bitpacked samples to reduce USB bandwidth --- air.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/air.c b/air.c index 6e3674b..6fcb6b7 100644 --- a/air.c +++ b/air.c @@ -153,8 +153,8 @@ int initAirspy(char **argv, int optind, thread_param_t * param) return -1; } - /* had problem with packing , disable it*/ - airspy_set_packing(device, 0); + /* enable packed samples */ + airspy_set_packing(device, 1); result = airspy_set_linearity_gain(device, gain); if( result != AIRSPY_SUCCESS ) {