0b0000 is not supported in Python 2.5

This commit is contained in:
Guillaume Valadon 2016-02-16 13:41:35 +01:00
parent 17dbbf9444
commit 20f1f86de4
1 changed files with 2 additions and 2 deletions

View File

@ -225,8 +225,8 @@ class StationInfoV11(Packet):
X3BytesField("reserved_s2", 0x000000),
MACField("firstnodeMAC", "ff:ff:ff:ff:ff:ff"),
LEShortField("TXaverage", 0x0000),
BitField("RxCoupling", 0b0000, 4),
BitField("TxCoupling", 0b0000, 4),
BitField("RxCoupling", 0, 4),
BitField("TxCoupling", 0, 4),
XByteField("reserved_s3", 0x00),
LEShortField("RXaverage", 0x0000),
XByteField("reserved_s4", 0x00) ]