diff options
author | Johnathan Corgan | 2009-10-21 14:20:15 -0700 |
---|---|---|
committer | Johnathan Corgan | 2009-10-21 14:20:15 -0700 |
commit | 8e003a402af2993f978620741fdf195ac9bf7834 (patch) | |
tree | 17bc885b8e32b3b29f78d9ae0817c88c581d87f2 /gr-vrt/src/vrt_source_32fc.h | |
parent | 3f60c94858810b605c2f8a343375c57c78a660dc (diff) | |
parent | 2875cf23fcb5d38866a42327cafa2b43abe2fbf4 (diff) | |
download | gnuradio-8e003a402af2993f978620741fdf195ac9bf7834.tar.gz gnuradio-8e003a402af2993f978620741fdf195ac9bf7834.tar.bz2 gnuradio-8e003a402af2993f978620741fdf195ac9bf7834.zip |
Merge branch 'vrt' of http://gnuradio.org/git/jblum
Merge fix: added GRUEL_INCLUDES to vrt Makefile
Merge fix: added missing include in gr-vrt
* 'vrt' of http://gnuradio.org/git/jblum:
query the model number from the host
fix so all handlers get called on event
simplfied the code while i was looking at it
added access methods for gps stuff
added access methods and parsing for caldiv if context
use existing utility method
reading the lo back and storing it
use the new htonll and vrt types to send cal and lo freqs
checking for if context packets and setting up the payload pointer and size
Reading 64 bit freq out of chunk of context packet.
copied over vrt context and type headers, updated bits.h as well
Dump IF-Context packets in hex.
use gruel/inet.h instead of arap/inet.h
fix white space
made rxdspno a parameter for: start/stop streaming, and quadradio32fc
Diffstat (limited to 'gr-vrt/src/vrt_source_32fc.h')
-rw-r--r-- | gr-vrt/src/vrt_source_32fc.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/gr-vrt/src/vrt_source_32fc.h b/gr-vrt/src/vrt_source_32fc.h index 7ca3e5fe2..c43170e83 100644 --- a/gr-vrt/src/vrt_source_32fc.h +++ b/gr-vrt/src/vrt_source_32fc.h @@ -34,6 +34,23 @@ protected: std::vector< std::complex<float> > d_remainder; missing_pkt_checker d_checker; + //caldiv settings parsed from if context + double d_cal_freq; + bool d_cal_locked; + bool d_cal_enabled; + double d_lo_freq; + bool d_lo_locked; + double d_caldiv_temp; + int d_caldiv_rev; + int d_caldiv_ser; + int d_caldiv_mod; + + //gps settings parsed from if context + int d_utc_time; + double d_altitude; + double d_longitude; + double d_latitude; + public: ~vrt_source_32fc(); @@ -42,7 +59,6 @@ public: gr_vector_void_star &output_items); void reset() { d_remainder.clear(); } - }; #endif /* INCLUDED_VRT_SOURCE_32FC_H */ |