You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bladerf python binding doesn't have bladerf trigger functions available in libbladerf documentation. I want to synchronize two bladerf A4 boards for four channel phase coherent operation . I have shared clock of one board by using
bladerf python binding doesn't have bladerf trigger functions available in libbladerf documentation. I want to synchronize two bladerf A4 boards for four channel phase coherent operation . I have shared clock of one board by using
Master:
self.device.set_clock_output(1)
self.clk_out=self.device.get_clock_output()
self.clk_in_sel=self.device.get_clock_select()
Slave:
sel=_bladerf.ClockSelect(1)
self.device.set_clock_select(sel)
self.clk_out=self.device.get_clock_output()
self.clk_in_sel=self.device.get_clock_select()
The text was updated successfully, but these errors were encountered: