Hello Folks,

Here I'm implementing the transmission of LoRa Frames and I want to be able
to stop the flowgraph(Stop Transmitting) between frames say the packet is
set to transmit every 3s so at tx_eob turn off tx and tx_sob start tx.
Below is my Flow graph code snippet can you let me know how I can
turn off/on tx between the frames?





















*def main(top_block_cls=lora_TX, options=None):    tb = top_block_cls()
def sig_handler(sig=None, frame=None):        tb.stop()        tb.wait()
    sys.exit(0)    signal.signal(signal.SIGINT, sig_handler)
signal.signal(signal.SIGTERM, sig_handler)    tb.start()    try:
input('Press Enter to quit: ')    except EOFError:        pass
tb.stop()    tb.wait()if __name__ == '__main__':    main()*
Thanks and Regards,
Sainath Vamshi
  • Controlli... Vamshi Sainath Gavani
    • Re: ... GNU Radio, the Free & Open-Source Toolkit for Software Radio
      • ... Vamshi Sainath Gavani
        • ... GNU Radio, the Free & Open-Source Toolkit for Software Radio
          • ... GNU Radio, the Free & Open-Source Toolkit for Software Radio
        • ... Cinaed Simson
    • Re: ... Paul Atreides

Reply via email to