summaryrefslogtreecommitdiff
path: root/ebus/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'ebus/__init__.py')
-rw-r--r--ebus/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ebus/__init__.py b/ebus/__init__.py
index 0813b53..e92a74e 100644
--- a/ebus/__init__.py
+++ b/ebus/__init__.py
@@ -125,6 +125,8 @@ class EbusXMLMixin(object):
continue
elif field.tag == "bit":
yield fields.Bit( name, int(offset))
+ elif field.tag == "byte":
+ yield fields.Byte( name, int(offset))
elif field.tag == "data1c":
yield fields.Data1c( name, int(offset) )
elif field.tag == "data2b":