diff options
author | Josh Blum <josh@joshknows.com> | 2010-10-11 18:09:56 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-10-11 18:09:56 -0700 |
commit | 1314feb429b8c2713d9fd0e9da077825d0a9c3bc (patch) | |
tree | a5ba6e1396fe0f444f6e0f1287f8740deecf9da6 /host/include | |
parent | 453b450aa2f40f1ab3689855654fd2167f554ccc (diff) | |
download | uhd-1314feb429b8c2713d9fd0e9da077825d0a9c3bc.tar.gz uhd-1314feb429b8c2713d9fd0e9da077825d0a9c3bc.tar.bz2 uhd-1314feb429b8c2713d9fd0e9da077825d0a9c3bc.zip |
usrp2: use 32-bit flow control sequence numbers
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/metadata.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/include/uhd/types/metadata.hpp b/host/include/uhd/types/metadata.hpp index 65952941c..96c4ad0d3 100644 --- a/host/include/uhd/types/metadata.hpp +++ b/host/include/uhd/types/metadata.hpp @@ -130,7 +130,7 @@ namespace uhd{ /*! * Event codes: - * - success: a packet was successfully transmitted + * - eob ack: an eob packet was successfully transmitted * - underflow: an internal send buffer has emptied * - sequence error: packet loss between host and device * - time error: packet had time that was late (or too early) @@ -138,7 +138,7 @@ namespace uhd{ * - sequence error in burst: packet loss within a burst */ enum event_code_t { - EVENT_CODE_SUCCESS = 0x1, + EVENT_CODE_EOB_ACK = 0x1, EVENT_CODE_UNDERFLOW = 0x2, EVENT_CODE_SEQ_ERROR = 0x4, EVENT_CODE_TIME_ERROR = 0x8, |