Skip to content

Commit 07eec1f

Browse files
committed
clean up some comments in the wmr300 driver
1 parent cf727ed commit 07eec1f

File tree

1 file changed

+16
-22
lines changed

1 file changed

+16
-22
lines changed

bin/weewx/drivers/wmr300.py

+16-22
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,14 @@
1414
# No thanks to oregon scientific - repeated requests for hardware and/or
1515
# specifications resulted in no response at all.
1616

17-
# TODO: battery level for each sensor
18-
# TODO: signal strength for each sensor
19-
# TODO: altitude
20-
# TODO: archive interval
21-
22-
# FIXME: warn if altitude in pressure packet does not match weewx altitude
17+
# TODO: figure out battery level for each sensor
18+
# TODO: figure out signal strength for each sensor
19+
# TODO: figure out archive interval
2320

2421
# FIXME: figure out unknown bytes in history packet
2522

2623
# FIXME: decode the 0xdb packets
2724

28-
# FIXME: figure out how to automatically reset the rain counter, otherwise
29-
# rain count is not recorded once the counter hits maximum value.
30-
3125
# FIXME: the read/write logic is rather brittle. it appears that communication
3226
# must be initiated with an interrupt write. after that, the station will
3327
# spew data. this implementation starts with a read, which will fail with
@@ -36,10 +30,11 @@
3630
# the genLoopPacket and genStartupRecords logic should be refactored to make
3731
# this behiavor explicit.
3832

39-
# FIXME: if the operating system is localized, the check for the string
40-
# 'No data available' will probably fail. we should check for a code instead,
41-
# but it is not clear whether such an element is available in a usb.USBError
42-
# object, or whether it is available across different pyusb versions.
33+
# FIXME: deal with initial usb timeout when starting usb communications
34+
35+
# FIXME: warn if altitude in pressure packet does not match weewx altitude
36+
37+
# FIXME: make log notice when rain counter approaches maximum
4338

4439
"""Driver for Oregon Scientific WMR300 weather stations.
4540
@@ -772,16 +767,18 @@ def _hi(x):
772767
# it wraps into USBError. so we have to compare strings to figure out exactly
773768
# what type of USBError we are dealing with. unfortunately, those strings are
774769
# localized, so we must compare in every language.
775-
KNOWN_MESSAGES = [
770+
KNOWN_USB_MESSAGES = [
776771
'No data available', 'No error',
777772
'Nessun dato disponibile', 'Nessun errore',
778773
'Keine Daten verfügbar',
779774
'No hay datos disponibles',
780775
'Pas de données disponibles'
781776
]
782777

783-
def known_usb_err(errmsg):
784-
for msg in KNOWN_MESSAGES:
778+
# these are the usb 'errors' that should be ignored
779+
def known_usb_err(e):
780+
errmsg = repr(e)
781+
for msg in KNOWN_USB_MESSAGES:
785782
if msg in errmsg:
786783
return True
787784
return False
@@ -915,8 +912,7 @@ def genLoopPackets(self):
915912
except usb.USBError, e:
916913
logdbg("e.errno=%s e.strerror=%s e.message=%s repr=%s" %
917914
(e.errno, e.strerror, e.message, repr(e)))
918-
errmsg = repr(e)
919-
if not known_usb_err(errmsg):
915+
if not known_usb_err(e):
920916
logerr("usb failure: %s" % e)
921917
raise weewx.WeeWxIOError(e)
922918
except (WrongLength, BadChecksum), e:
@@ -984,8 +980,7 @@ def genStartupRecords(self, since_ts):
984980
except usb.USBError, e:
985981
logdbg("e.errno=%s e.strerror=%s e.message=%s repr=%s" %
986982
(e.errno, e.strerror, e.message, repr(e)))
987-
errmsg = repr(e)
988-
if not known_usb_err(errmsg):
983+
if not known_usb_err(e):
989984
logerr("usb failure: %s" % e)
990985
raise weewx.WeeWxIOError(e)
991986
except (WrongLength, BadChecksum), e:
@@ -1129,8 +1124,7 @@ def read(self, count=True):
11291124
except usb.USBError, e:
11301125
logdbg("e.errno=%s e.strerror=%s e.message=%s repr=%s" %
11311126
(e.errno, e.strerror, e.message, repr(e)))
1132-
errmsg = repr(e)
1133-
if not known_usb_err(errmsg):
1127+
if not known_usb_err(e):
11341128
raise
11351129
return buf
11361130

0 commit comments

Comments
 (0)