Skip to content

Commit 36200ee

Browse files
Extend frequency range of SEA baseline actions (#55)
* 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
1 parent adb3db8 commit 36200ee

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ repos:
2323
- id: pyupgrade
2424
args: ["--py38-plus"]
2525
- repo: https://github.com/pycqa/isort
26-
rev: 5.12.0
26+
rev: 5.13.2
2727
hooks:
2828
- id: isort
2929
name: isort (python)
3030
types: [file, python]
3131
args: ["--profile", "black", "--filter-files", "--gitignore"]
3232
- repo: https://github.com/psf/black
33-
rev: 23.10.1
33+
rev: 24.1.1
3434
hooks:
3535
- id: black
3636
types: [file, python]
3737
- repo: https://github.com/igorshubovych/markdownlint-cli
38-
rev: v0.37.0
38+
rev: v0.39.0
3939
hooks:
4040
- id: markdownlint
4141
types: [file, markdown]

src/scos_tekrsa/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.0.0"
1+
__version__ = "5.0.1"

src/scos_tekrsa/configs/actions-500-600/SEA_CBRS_Calibrate_Baseline.yml

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ y_factor_cal:
1313
duration_ms: 1000
1414
nskip: 0
1515
frequency:
16+
- 3535e6
17+
- 3545e6
1618
- 3555e6
1719
- 3565e6
1820
- 3575e6
@@ -28,6 +30,7 @@ y_factor_cal:
2830
- 3675e6
2931
- 3685e6
3032
- 3695e6
33+
- 3705e6
3134
# IIR Filter Settings:
3235
# Optionally apply a low-pass IIR filter before Y-Factor
3336
iir_apply: True

src/scos_tekrsa/configs/actions-500-600/SEA_CBRS_Measure_Baseline.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ nasctn_sea_data_product:
2121
reference_level: -25
2222
attenuation: 0
2323
sample_rate: 14e6
24-
# Acquisition settings (3550-3700 MHz in 10 MHz steps, each 4s long)
24+
# Acquisition settings (3530-3710 MHz in 10 MHz steps, each 4s long)
2525
duration_ms: 4000
2626
nskip: 0
2727
frequency:
28+
- 3535e6
29+
- 3545e6
2830
- 3555e6
2931
- 3565e6
3032
- 3575e6
@@ -40,3 +42,4 @@ nasctn_sea_data_product:
4042
- 3675e6
4143
- 3685e6
4244
- 3695e6
45+
- 3705e6

src/scos_tekrsa/hardware/mocks/rsa_block.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
""" Mock functions from RSA API that are used in SignalAnalyzerInterface. """
2+
23
import numpy as np
34

45
from scos_tekrsa.hardware.tekrsa_constants import IQSTREAM_BW_SR_MAP

0 commit comments

Comments
 (0)