|
14 | 14 | # No thanks to oregon scientific - repeated requests for hardware and/or
|
15 | 15 | # specifications resulted in no response at all.
|
16 | 16 |
|
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 |
23 | 20 |
|
24 | 21 | # FIXME: figure out unknown bytes in history packet
|
25 | 22 |
|
26 | 23 | # FIXME: decode the 0xdb packets
|
27 | 24 |
|
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 |
| - |
31 | 25 | # FIXME: the read/write logic is rather brittle. it appears that communication
|
32 | 26 | # must be initiated with an interrupt write. after that, the station will
|
33 | 27 | # spew data. this implementation starts with a read, which will fail with
|
|
36 | 30 | # the genLoopPacket and genStartupRecords logic should be refactored to make
|
37 | 31 | # this behiavor explicit.
|
38 | 32 |
|
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 |
43 | 38 |
|
44 | 39 | """Driver for Oregon Scientific WMR300 weather stations.
|
45 | 40 |
|
@@ -772,16 +767,18 @@ def _hi(x):
|
772 | 767 | # it wraps into USBError. so we have to compare strings to figure out exactly
|
773 | 768 | # what type of USBError we are dealing with. unfortunately, those strings are
|
774 | 769 | # localized, so we must compare in every language.
|
775 |
| -KNOWN_MESSAGES = [ |
| 770 | +KNOWN_USB_MESSAGES = [ |
776 | 771 | 'No data available', 'No error',
|
777 | 772 | 'Nessun dato disponibile', 'Nessun errore',
|
778 | 773 | 'Keine Daten verfügbar',
|
779 | 774 | 'No hay datos disponibles',
|
780 | 775 | 'Pas de données disponibles'
|
781 | 776 | ]
|
782 | 777 |
|
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: |
785 | 782 | if msg in errmsg:
|
786 | 783 | return True
|
787 | 784 | return False
|
@@ -915,8 +912,7 @@ def genLoopPackets(self):
|
915 | 912 | except usb.USBError, e:
|
916 | 913 | logdbg("e.errno=%s e.strerror=%s e.message=%s repr=%s" %
|
917 | 914 | (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): |
920 | 916 | logerr("usb failure: %s" % e)
|
921 | 917 | raise weewx.WeeWxIOError(e)
|
922 | 918 | except (WrongLength, BadChecksum), e:
|
@@ -984,8 +980,7 @@ def genStartupRecords(self, since_ts):
|
984 | 980 | except usb.USBError, e:
|
985 | 981 | logdbg("e.errno=%s e.strerror=%s e.message=%s repr=%s" %
|
986 | 982 | (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): |
989 | 984 | logerr("usb failure: %s" % e)
|
990 | 985 | raise weewx.WeeWxIOError(e)
|
991 | 986 | except (WrongLength, BadChecksum), e:
|
@@ -1129,8 +1124,7 @@ def read(self, count=True):
|
1129 | 1124 | except usb.USBError, e:
|
1130 | 1125 | logdbg("e.errno=%s e.strerror=%s e.message=%s repr=%s" %
|
1131 | 1126 | (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): |
1134 | 1128 | raise
|
1135 | 1129 | return buf
|
1136 | 1130 |
|
|
0 commit comments