Skip to content

Commit

Permalink
0.13.2 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Adminiuga authored Feb 6, 2020
2 parents 7ba23b9 + 848bfc6 commit 0bda9e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bellows/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MAJOR_VERSION = 0
MINOR_VERSION = 13
PATCH_VERSION = "1"
PATCH_VERSION = "2"
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
5 changes: 1 addition & 4 deletions bellows/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,7 @@ async def initialize(self):
await self._cfg(c.CONFIG_SOURCE_ROUTE_TABLE_SIZE, 8)
await self._cfg(c.CONFIG_MAX_END_DEVICE_CHILDREN, 32)
await self._cfg(c.CONFIG_INDIRECT_TRANSMISSION_TIMEOUT, 7680)
if self._ezsp.ezsp_version < 6:
await self._cfg(c.CONFIG_KEY_TABLE_SIZE, 8)
else:
await self._cfg(c.CONFIG_KEY_TABLE_SIZE, 16)
await self._cfg(c.CONFIG_KEY_TABLE_SIZE, 4)
await self._cfg(c.CONFIG_TRANSIENT_KEY_TIMEOUT_S, 180, True)
if self._ezsp.ezsp_version >= 7:
await self._cfg(c.CONFIG_END_DEVICE_POLL_TIMEOUT, 8)
Expand Down

0 comments on commit 0bda9e0

Please sign in to comment.