You first make the radio objects, with the settings that you want, see sdrtx & sdrrx, for more options.
sdrtx_object = sdrtx("Pluto")
sdrrx_object = sdrrx("Pluto")
Then call transmitRepeat to continuously transmit the data given, and then call the recieving object.
transmitRepeat(sdrtx_object, tx_symbols_modulated);
rx_symbols_modulated = sdrrx_object();
Do not forget to call *.release to stop the transmission and clean things up. (otherwise I observed wierd behaviour)
sdrrx_object.release
sdrtx_object.release
Remember that you might drop in halfway into your message, so you'll have to record for twice the length of your message. You can after then search for your start symbols.



