Skip to content

Commit

Permalink
v0.9.1 fix for Windows scan >2GHz
Browse files Browse the repository at this point in the history
Fixed bug where Windows App crashed if freq > 2GHz
  • Loading branch information
g4ixt committed Jan 3, 2024
1 parent e0524ae commit 3830ced
Show file tree
Hide file tree
Showing 6 changed files with 2 additions and 2 deletions.
Binary file modified QtTSAprefs.db
Binary file not shown.
4 changes: 2 additions & 2 deletions QtTinySA.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def set_frequencies(self): # creates a numpy array of equi-spaced freqs in Hz.
startF = ui.start_freq.value()*1e6 # freq in Hz
stopF = ui.stop_freq.value()*1e6
points = self.setPoints()
frequencies = np.linspace(startF, stopF, points, dtype=int)
frequencies = np.linspace(startF, stopF, points, dtype=np.int64)
logging.debug(f'frequencies = {frequencies}')
return frequencies

Expand Down Expand Up @@ -880,7 +880,7 @@ def popUp(message, button, icon):

app = QtWidgets.QApplication([]) # create QApplication for the GUI
app.setApplicationName('QtTinySA')
app.setApplicationVersion(' v0.9.0')
app.setApplicationVersion(' v0.9.1')
window = QtWidgets.QMainWindow()
ui = QtTinySpectrum.Ui_MainWindow()
ui.setupUi(window)
Expand Down
Binary file modified dist/QtTinySA-Win11/QtTinySA.exe
Binary file not shown.
Binary file modified dist/QtTinySA-Win11/_internal/QtTSAprefs.db
Binary file not shown.
Binary file modified dist/QtTinySA/QtTinySA
Binary file not shown.
Binary file modified dist/QtTinySA/_internal/QtTSAprefs.db
Binary file not shown.

0 comments on commit 3830ced

Please sign in to comment.