On Wed, 2008-12-24 at 13:23 -0500, Philip Balister wrote: > On Wed, Dec 24, 2008 at 3:12 AM, Johnathan Corgan > <[email protected]> wrote: > > 1) libusrp, which provides the lowest-level communications services over > > USB to the USRP hardware. This is a C++ based read/write raw sample > > interface and does not provide any of the streaming semantics of GNU > > Radio flowgraphs. > > Do you know if there are any changes in the libusrp api for the 3.2 release?
To previously existing code? Yes, though relatively minor. Of course, this last update *adds* the entire daughterboard control infrastructure, and some USRP configuration methods that were previously only in Python. The main difference is that the usrp_standard_* class 'make' functions return a shared pointer rather than a raw pointer. This return type is typdef'ed, so: usrp_standard_rx *rx; ...becomes usrp_standard_rx_sptr rx; -Johnathan _______________________________________________ Discuss-gnuradio mailing list [email protected] http://lists.gnu.org/mailman/listinfo/discuss-gnuradio
