diff options
author | Moritz Fischer <moritz.fischer@ettus.com> | 2015-07-07 14:29:30 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-07-14 12:19:41 -0700 |
commit | 3cb995e3a60e940e5b23c6ca43712ab51b27c97e (patch) | |
tree | d92dae73160865c71c104c50cfe5a74d4bc66ed9 /host | |
parent | 850251d4ec31f515b99e2f5f2c128c3ce78c2b76 (diff) | |
download | uhd-3cb995e3a60e940e5b23c6ca43712ab51b27c97e.tar.gz uhd-3cb995e3a60e940e5b23c6ca43712ab51b27c97e.tar.bz2 uhd-3cb995e3a60e940e5b23c6ca43712ab51b27c97e.zip |
e3xx: Increase TX buffer size to PAGE_SIZE.
This was originally limited because it performed poor,
however, with refactoring that has been done since release,
this now gives better performance.
Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
Diffstat (limited to 'host')
-rw-r--r-- | host/lib/usrp/e300/e300_defaults.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/e300/e300_defaults.hpp b/host/lib/usrp/e300/e300_defaults.hpp index 8fe8c3a05..89afcb256 100644 --- a/host/lib/usrp/e300/e300_defaults.hpp +++ b/host/lib/usrp/e300/e300_defaults.hpp @@ -41,7 +41,7 @@ static const std::string DEFAULT_CLOCK_SRC = "internal"; static const size_t DEFAULT_RX_DATA_FRAME_SIZE = 4096; static const size_t DEFAULT_RX_DATA_NUM_FRAMES = 32; -static const size_t DEFAULT_TX_DATA_FRAME_SIZE = 2048; +static const size_t DEFAULT_TX_DATA_FRAME_SIZE = 4096; static const size_t DEFAULT_TX_DATA_NUM_FRAMES = 32; static const size_t DEFAULT_CTRL_FRAME_SIZE = 64; |