Skip to content

Commit

Permalink
Merge pull request #13 from nqrduck/development
Browse files Browse the repository at this point in the history
Hotfix crashing UI
  • Loading branch information
jupfi committed May 22, 2024
2 parents 03d5571 + d2fb242 commit 5648550
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
# Changelog

## Version 0.0.7 (22-05-2024)

- Improved error handling for failed measurements (`63b2908eb2fb3586e7ae9423036031ec31ea90b2`)

## Version 0.0.6 (05-05-2024)

- Added a dwell time setting for receiving. Additionally the sampling frequency is now settable. (`1a6342e4cb3ee5a351547dc389873f9ce8f20a15`)
- Measurements now have a name (`1bceba1a0f57ce168564cadecb30152020ca509c`)

### Version 0.0.5 (26-04-2024)

- Added support for the new formbuilder provided by the nqrduck core

### Version 0.0.4 (23-04-2024)

- Automatic PyPi deployment

### Version 0.0.3 (15-04-2024)
- Initial release

- Initial release
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ allow-direct-references = true

[project]
name = "nqrduck-spectrometer-limenqr"
version = "0.0.6"
version = "0.0.7"
authors = [
{ name="jupfi", email="support@nqrduck.cool" },
]
Expand Down
4 changes: 4 additions & 0 deletions src/nqrduck_spectrometer_limenqr/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ def start_measurement(self):

measurement_data = self.process_measurement_results(lime)

if not measurement_data:
self.emit_measurement_error("Measurement failed. Unable to retrieve data.")
return -1

# Resample the RX data to the dwell time settings
dwell_time = self.module.model.get_setting_by_name(
self.module.model.RX_DWELL_TIME
Expand Down

0 comments on commit 5648550

Please sign in to comment.