On Sat, 2009-05-16 at 03:44 +0200, Changkyu Seol wrote: > It will be grateful if python bindings for "config_mimo", > "sync_every_pps" are added to usrp2_base.h and usrp2.i in gr-usrp2.
These calls are now visible (as of trunk r11050) in the Python API as: from gnuradio import usrp2 u = usrp2.source_32fc() # any of the sinks or sources u.sync_every_pps(True) # False to disable u.config_mimo(usrp2.MC_WE_LOCK_TO_SMA) For the C++ API, the MC_* constants are now visible in the usrp2 namespace: usrp2::MC_WE_LOCK_TO_SMA ... You can see the definitions in <usrp2/mimo_config.h>, though it is automatically included for you. Johnathan _______________________________________________ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio