Posted by: bramy
« on: March 27, 2012, 01:06:30 pm »Woooowww thats amazingg!!! Thank you so much Jan!
Thank you for using this forum as the technical support base for your device.
● You can format the text and attach screenshots, photos and RDS Spy records
● Faster reply: 50 % of questions are answered within 30 minutes
● You don't need to register (but registration is possible)
● The members represent a wide range of experts
● The resolution will be helpful for other users
● You'll be notified by email about new post
bandscan.acquire
set(stationindex,1)
set(filename,Bandscan %date %time.csv)
savetext(%filename,"Frequency";"Level [dBuV]";"Noise";"RDS PI";"RDS PS"%cr)
rpt:
if (%stationindex>%stationcount)
stop
endif
appendtext(%filename,"%station.frequency";"%station.level";"%station.noise";"%station.rdspi";"%station.rdsps"%cr)
inc(stationindex)
goto(rpt)
bandscan.acquire
set(filename,Bandscan %date %time)
extendedbandscan.savebitmap(%filename.jpg)
set(stationindex,1)
savetext(%filename.csv,"Frequency";"Level [dBuV]";"Quality";"RDS PI";"RDS PS";"Pilot [kHz]";"RDS [kHz]";"Max hold [kHz]";"Max at [kHz]";"Above limit [%]"%cr)
setmode(0)
rpt:
if (%stationindex>%stationcount)
statusbartext(Done.)
stop
endif
statusbartext(Monitoring %station.frequency %station.rdsps ... [Station %stationindex of %stationcount])
tune(%station.frequency)
sleep(3)
getquality
if (%quality<3)
goto(skip)
endif
sleep(20)
send(?X)
frequencydeviation.acquire
if (%totalsamples<10)
goto(skip)
endif
getpilot
getrds
appendtext(%filename.csv,"%station.frequency";"%station.level";"%quality";"%station.rdspi";"%station.rdsps";"%pilot_";"%rds_";"%tsmaxhold_";"%maxat";"%abovelimit"%cr)
skip:
inc(stationindex)
goto(rpt)