Skip to content

Commit

Permalink
Fixed JS220 handling of sample_frequency parameter set to 2000000.
Browse files Browse the repository at this point in the history
  • Loading branch information
mliberty1 committed Oct 17, 2023
1 parent 94643c4 commit ba95762
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
echo "runner.arch=$RUNNER_ARCH"
- name: Install Ubuntu dependencies
run: sudo apt install -y libudev-dev libusb-1.0-0-dev
run: |
sudo apt update
sudo apt install -y libudev-dev libusb-1.0-0-dev
- name: Checkout repo
uses: actions/checkout@v3
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
This file contains the list of changes made to pyjoulescope.


## 1.1.10

2023 Oct 17

* Fixed JS220 handling of `sample_frequency` parameter set to 2000000.


## 1.1.9

2023 Jul 24
Expand Down
1 change: 1 addition & 0 deletions joulescope/v1/js220.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ def _on_sampling_frequency(self, value):
self._log.info('_on_sampling_frequency %s', value)
self.publish('h/fs', value)
self.output_sampling_frequency = value
self._parameters['sampling_frequency'] = value

def _on_gpo(self, index, value):
index = int(index)
Expand Down
2 changes: 1 addition & 1 deletion joulescope/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.1.9"
__version__ = "1.1.10"

__title__ = "joulescope"
__description__ = 'Joulescope™ host driver and utilities'
Expand Down

0 comments on commit ba95762

Please sign in to comment.