This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/osmocom-sdr@lists.osmocom.org/.
Steve Markgraf steve at steve-m.deHi,
On 25.03.2013 18:10, Chris Svendsen wrote:
> char SET_FREQUENCY[] ={0x01};
> string Freq = string(SET_FREQUENCY,1)+"500000000";
> answer = send(sConnect,Freq.c_str(),11,0);
The "set frequency"-command of rtl_tcp expects an unsigned 32 bit
integer in network byte order, not a string.
Host implementation:
http://cgit.osmocom.org/rtl-sdr/tree/src/rtl_tcp.c#n325
Client implementation:
http://cgit.osmocom.org/gr-osmosdr/tree/lib/rtl_tcp/rtl_tcp_source_f.cc#n275
Regards,
Steve