Skip to content

Commit

Permalink
Extend frequency range of SEA baseline actions (#55)
Browse files Browse the repository at this point in the history
* extend frequency range of baseline SEA actions

* bump version to 5.0.1

* update pre-commit hooks

* run updated pre-commit hooks on all files
  • Loading branch information
aromanielloNTIA committed Feb 7, 2024
1 parent adb3db8 commit 36200ee
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Expand Up @@ -23,19 +23,19 @@ repos:
- id: pyupgrade
args: ["--py38-plus"]
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
name: isort (python)
types: [file, python]
args: ["--profile", "black", "--filter-files", "--gitignore"]
- repo: https://github.com/psf/black
rev: 23.10.1
rev: 24.1.1
hooks:
- id: black
types: [file, python]
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.37.0
rev: v0.39.0
hooks:
- id: markdownlint
types: [file, markdown]
Expand Down
2 changes: 1 addition & 1 deletion src/scos_tekrsa/__init__.py
@@ -1 +1 @@
__version__ = "5.0.0"
__version__ = "5.0.1"
Expand Up @@ -13,6 +13,8 @@ y_factor_cal:
duration_ms: 1000
nskip: 0
frequency:
- 3535e6
- 3545e6
- 3555e6
- 3565e6
- 3575e6
Expand All @@ -28,6 +30,7 @@ y_factor_cal:
- 3675e6
- 3685e6
- 3695e6
- 3705e6
# IIR Filter Settings:
# Optionally apply a low-pass IIR filter before Y-Factor
iir_apply: True
Expand Down
Expand Up @@ -21,10 +21,12 @@ nasctn_sea_data_product:
reference_level: -25
attenuation: 0
sample_rate: 14e6
# Acquisition settings (3550-3700 MHz in 10 MHz steps, each 4s long)
# Acquisition settings (3530-3710 MHz in 10 MHz steps, each 4s long)
duration_ms: 4000
nskip: 0
frequency:
- 3535e6
- 3545e6
- 3555e6
- 3565e6
- 3575e6
Expand All @@ -40,3 +42,4 @@ nasctn_sea_data_product:
- 3675e6
- 3685e6
- 3695e6
- 3705e6
1 change: 1 addition & 0 deletions src/scos_tekrsa/hardware/mocks/rsa_block.py
@@ -1,4 +1,5 @@
""" Mock functions from RSA API that are used in SignalAnalyzerInterface. """

import numpy as np

from scos_tekrsa.hardware.tekrsa_constants import IQSTREAM_BW_SR_MAP
Expand Down

0 comments on commit 36200ee

Please sign in to comment.