Skip to content

Commit 7ba23b9

Browse files
authored
0.13.1 Release
2 parents 2909640 + 16425e2 commit 7ba23b9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

bellows/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
MAJOR_VERSION = 0
22
MINOR_VERSION = 13
3-
PATCH_VERSION = "0"
3+
PATCH_VERSION = "1"
44
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
55
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)

bellows/zigbee/application.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ async def initialize(self):
8787
await self._cfg(c.CONFIG_SOURCE_ROUTE_TABLE_SIZE, 8)
8888
await self._cfg(c.CONFIG_MAX_END_DEVICE_CHILDREN, 32)
8989
await self._cfg(c.CONFIG_INDIRECT_TRANSMISSION_TIMEOUT, 7680)
90-
await self._cfg(c.CONFIG_KEY_TABLE_SIZE, 16)
90+
if self._ezsp.ezsp_version < 6:
91+
await self._cfg(c.CONFIG_KEY_TABLE_SIZE, 8)
92+
else:
93+
await self._cfg(c.CONFIG_KEY_TABLE_SIZE, 16)
9194
await self._cfg(c.CONFIG_TRANSIENT_KEY_TIMEOUT_S, 180, True)
9295
if self._ezsp.ezsp_version >= 7:
9396
await self._cfg(c.CONFIG_END_DEVICE_POLL_TIMEOUT, 8)

0 commit comments

Comments
 (0)