bladeRF icon indicating copy to clipboard operation
bladeRF copied to clipboard

missing trigger functionality api's in bladerf python binding

Open venky0108 opened this issue 4 months ago • 0 comments

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()

venky0108 avatar Apr 19 '24 06:04 venky0108