Skip to content

Commit

Permalink
0.13.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Adminiuga authored Jan 29, 2020
2 parents e8b644f + a40b504 commit 2909640
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 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 = 12
MINOR_VERSION = 13
PATCH_VERSION = "0"
__short_version__ = "{}.{}".format(MAJOR_VERSION, MINOR_VERSION)
__version__ = "{}.{}".format(__short_version__, PATCH_VERSION)
5 changes: 3 additions & 2 deletions bellows/zigbee/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +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)
await self._cfg(c.CONFIG_KEY_TABLE_SIZE, 1)
await self._cfg(c.CONFIG_KEY_TABLE_SIZE, 16)
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 Expand Up @@ -231,7 +231,8 @@ async def _policy(self):
"""Set up the policies for what the NCP should do"""
e = self._ezsp
v = await e.setPolicy(
t.EzspPolicyId.TC_KEY_REQUEST_POLICY, t.EzspDecisionId.DENY_TC_KEY_REQUESTS
t.EzspPolicyId.TC_KEY_REQUEST_POLICY,
t.EzspDecisionId.GENERATE_NEW_TC_LINK_KEY,
)
assert v[0] == t.EmberStatus.SUCCESS # TODO: Better check
v = await e.setPolicy(
Expand Down

0 comments on commit 2909640

Please sign in to comment.