def specan(self, basefreq=902e6, inc=250e3, count=104): freq, delta = self._doSpecAn(basefreq, inc, count) import rflib.ccspecan as rfspecan rfspecan.ensureQapp() fhigh = freq + (delta*(count+1)) window = rfspecan.Window(self, freq, fhigh, delta, 0) window.show() rfspecan._qt_app.exec_()
def specan(self, basefreq=902e6, inc=250e3, count=104): freq, delta = self._doSpecAn(basefreq, inc, count) import rflib.ccspecan as rfspecan rfspecan.ensureQapp() fhigh = freq + (delta * (count + 1)) window = rfspecan.Window(self, freq, fhigh, delta, 0) window.show() rfspecan._qt_app.exec_()
def specan(self, centfreq=915e6, inc=250e3, count=104): ''' Enter Spectrum Analyzer mode. this sets the mode of the dongle to send data, and brings up the GUI. centfreq is the center frequency ''' freq, delta = self._doSpecAn(centfreq, inc, count) import rflib.ccspecan as rfspecan rfspecan.ensureQapp() fhigh = freq + (delta * (count + 1)) window = rfspecan.Window(self, freq, fhigh, delta, 0) window.show() rfspecan._qt_app.exec_()