Skip to content

Commit

Permalink
Support 1920 kSPS on RTL-SDR devices
Browse files Browse the repository at this point in the history
  • Loading branch information
troosh committed Aug 2, 2021
1 parent 7336fa7 commit fb9b6bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Device.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ namespace Device{

std::vector<char> buffer;
std::vector<CFLOAT32> output;
const int buffer_size = 8192 * 8 * 3 * 5;
const int buffer_size = 8192 * 2 * 3 * 5;

Format format = Format::CU8;

Expand Down Expand Up @@ -188,7 +188,7 @@ namespace Device{
void callback(CU8* buf, int len);
void Demodulation();

static const uint32_t BufferLen = 2048 * 2 * 2 * 6;
static const uint32_t BufferLen = 2048 * 4 * 3 * 5;
rtlsdr_dev_t* getDevice() { return dev; }

public:
Expand Down

0 comments on commit fb9b6bb

Please sign in to comment.