diff options
author | Josh Blum <josh@joshknows.com> | 2012-06-19 22:41:37 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-06-19 22:41:37 -0700 |
commit | 8618af163e906c4b2224faabeb998c000a029855 (patch) | |
tree | 39b7775a30b22d81d4bb7e6cd6664c97c1ffd76f /host/lib | |
parent | db8f128e51c1d933feaa55358f887a2750375a8c (diff) | |
download | uhd-8618af163e906c4b2224faabeb998c000a029855.tar.gz uhd-8618af163e906c4b2224faabeb998c000a029855.tar.bz2 uhd-8618af163e906c4b2224faabeb998c000a029855.zip |
usrp2: MAX_SEQS_OUT-1 because ack comes after send
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/usrp/usrp2/usrp2_fifo_ctrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp2/usrp2_fifo_ctrl.cpp b/host/lib/usrp/usrp2/usrp2_fifo_ctrl.cpp index 3b8d215f5..efb88eb82 100644 --- a/host/lib/usrp/usrp2/usrp2_fifo_ctrl.cpp +++ b/host/lib/usrp/usrp2/usrp2_fifo_ctrl.cpp @@ -33,7 +33,7 @@ static const size_t POKE32_CMD = (1 << 8); static const size_t PEEK32_CMD = 0; static const double ACK_TIMEOUT = 0.5; static const double MASSIVE_TIMEOUT = 10.0; //for when we wait on a timed command -static const boost::uint32_t MAX_SEQS_OUT = 16; +static const boost::uint32_t MAX_SEQS_OUT = 15; #define SPI_DIV SR_SPI_CORE + 0 #define SPI_CTRL SR_SPI_CORE + 1 |