Skip to content

Commit

Permalink
increase receive buffer for 4KB to 64KB
Browse files Browse the repository at this point in the history
  • Loading branch information
marenz2569 committed Aug 18, 2024
1 parent 3e4c021 commit aed2f6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/decoder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,6 @@ class Decoder {
// bit stream -> false
bool iq_or_bit_stream_;

static const std::size_t kRX_BUFFER_SIZE = 4096;
// 64KB receive buffer.
static const std::size_t kRX_BUFFER_SIZE = 64 * 1024;
};

0 comments on commit aed2f6b

Please sign in to comment.