Skip to content

Commit

Permalink
Readme.md updates and lxml update
Browse files Browse the repository at this point in the history
  • Loading branch information
andresp committed Oct 7, 2024
1 parent 98ec3d8 commit e86f603
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ This script retrieves channel information from a cable modem and stores time ser

## Supported Modems

* Hitron Coda56
* Motorola MB8600
* Netgear CM2000
* Technicolor XB7
Expand All @@ -27,6 +28,7 @@ Edit [configuration.ini](./data/configuration.ini) and fill in your information

Valid strings for `ModemType`:

* `HitronCoda56`
* `MotorolaMB8600`
* `NetgearCM2000`
* `TechnicolorXB7`
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ install_requires =
influxdb-client==1.35.0
isort==5.11.4
lazy-object-proxy==1.8.0
lxml==4.9.2
lxml==5.3.0
mccabe==0.7.0
msgpack==1.0.4
pylint==2.15.9
Expand Down
3 changes: 2 additions & 1 deletion src/docsismodem/modems/hitron_coda56.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ def formatDownstreamOfdmPoints(self, data, sampleTime):
continue

point = Point("downstreamOFDM") \
.tag("receiver", values["receive"]) \
.tag("receive", values["receive"]) \
.tag("channel", values["receive"]) \
.tag("modulation", "OFDM") \
.tag("ffttype", values["ffttype"]) \
.tag("frequency", values["Subcarr0freqFreq"]) \
Expand Down

0 comments on commit e86f603

Please sign in to comment.