diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml index 0f12524..aa1b9e6 100644 --- a/.github/workflows/packaging.yml +++ b/.github/workflows/packaging.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dd6a1f..109f3b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/joulescope/v1/js220.py b/joulescope/v1/js220.py index a86a6be..26fc41f 100644 --- a/joulescope/v1/js220.py +++ b/joulescope/v1/js220.py @@ -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) diff --git a/joulescope/version.py b/joulescope/version.py index b3f8003..d8f83ec 100644 --- a/joulescope/version.py +++ b/joulescope/version.py @@ -1,4 +1,4 @@ -__version__ = "1.1.9" +__version__ = "1.1.10" __title__ = "joulescope" __description__ = 'Joulescopeā„¢ host driver and utilities'