Search found 45 matches

by 0815
Sun Apr 24, 2016 5:28 pm
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 265013

Re: SDRPLAY linux commandline tools?

*push*
by 0815
Sat Apr 02, 2016 3:33 pm
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 265013

Re: SDRPLAY linux commandline tools?

Hi,

any news regarding the AGC?

regards
by 0815
Sat Apr 02, 2016 3:29 pm
Forum: Code Corner
Topic: SDRPLAY with tetra decoder
Replies: 4
Views: 26048

Re: SDRPLAY with tetra decoder

i suggest the pc/notebook is a bit too slow......

regards
by 0815
Sun Mar 20, 2016 10:55 am
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 265013

Re: SDRPLAY linux commandline tools?

yep it is from the ADSB code, ok i thought you might have something wirkong out of the box - no problem, just drop some code here when you are bored ;)
thx
regards
by 0815
Sun Mar 20, 2016 8:03 am
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 265013

Re: SDRPLAY linux commandline tools?

@sdrplay, is there an easy way to implement the gain adjustment to the rawIQ: /* adjust gain if required */ if (max_sig > MAX_GAIN_THRESH) mir_sdr_SetGr (1, 0, 0); if (max_sig < MIN_GAIN_THRESH) mir_sdr_SetGr (-1, 0, 0); if yes please let me know how? can i use the ibuf and qbuf for it? for (i = 0; ...
by 0815
Sat Mar 19, 2016 5:29 pm
Forum: SDRplay related
Topic: Mode A & Mode C (Mode S, ADSB)
Replies: 10
Views: 34241

Re: Mode A & Mode C (Mode S, ADSB)

Perfect!!! Thanks
by 0815
Fri Mar 18, 2016 8:48 pm
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 265013

Re: SDRPLAY linux commandline tools?

thx sasan,

that did the job, but still not getting adsb data out with dump1090 using the --ifile option.....
by 0815
Fri Mar 18, 2016 8:46 pm
Forum: SDRplay related
Topic: Mode A & Mode C (Mode S, ADSB)
Replies: 10
Views: 34241

Re: Mode A & Mode C (Mode S, ADSB)

hi,

can you tell me where to download?

thx
by 0815
Thu Mar 17, 2016 7:07 pm
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 265013

Re: SDRPLAY linux commandline tools?

but about the adsb mode, i did buffer[j++] = (unsigned char) (ibuf[i] >> 8 + 127); buffer[j++] = (unsigned char) (qbuf[i] >> 8 + 127); and the compiler complains: rawIQ.c:232:13: warning: right shift count >= width of type [enabled by default] buffer[j++] = (unsigned char) (ibuf[i] >> 8 + 127); ^ ra...
by 0815
Thu Mar 17, 2016 6:36 pm
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 265013

Re: SDRPLAY linux commandline tools?

enclosed the tested 16 bit code - works for me now! availiable options: -f frequecy in Hz -s samplerate -g gain filename a "-" dumps to stdout please post feedback - thx Use the standard makefile, posted before /* * rtl-sdr, turns your Realtek RTL2832 based DVB dongle into a SDR receiver * Copyright...