diff options
author | Josh Blum <josh@joshknows.com> | 2010-07-05 19:12:01 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-07-05 19:12:01 -0700 |
commit | a95eaac42f6cc85fd2ad3f32dc29eeab38ef5194 (patch) | |
tree | bc1a60e25496a3a1c3ff26f0fc2d3782b6ab191d /host/lib/usrp/usrp2/fw_common.h | |
parent | c2039a8c92561fa5532d87cb9d875a3ad7b875c1 (diff) | |
download | uhd-a95eaac42f6cc85fd2ad3f32dc29eeab38ef5194.tar.gz uhd-a95eaac42f6cc85fd2ad3f32dc29eeab38ef5194.tar.bz2 uhd-a95eaac42f6cc85fd2ad3f32dc29eeab38ef5194.zip |
usrp2: Added a peek64 to read pairs of 32 bit numbers such as time64
also added a templated host to/from network conversion in byteswap.hpp (didnt use it though)
Diffstat (limited to 'host/lib/usrp/usrp2/fw_common.h')
-rw-r--r-- | host/lib/usrp/usrp2/fw_common.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/host/lib/usrp/usrp2/fw_common.h b/host/lib/usrp/usrp2/fw_common.h index 12daa6286..4c66aa41e 100644 --- a/host/lib/usrp/usrp2/fw_common.h +++ b/host/lib/usrp/usrp2/fw_common.h @@ -111,7 +111,9 @@ typedef struct{ struct { _SINS_ uint32_t addr; _SINS_ uint32_t data; - _SINS_ uint8_t num_bytes; //1, 2, 4 + _SINS_ uint32_t addrhi; + _SINS_ uint32_t datahi; + _SINS_ uint8_t num_bytes; //1, 2, 4, 8 } poke_args; } data; } usrp2_ctrl_data_t; |