-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Support firmware extensions * Fix startup * Expand the custom command protocol * Fix existing unit tests * Handle empty `customFrame` response * Support setting source routes as well * Rename custom commands to XNCP and support board string overrides * Use a generic interface to override manufacturing tokens * Hide firmware-level manual source routing behind `manual_source_routing` * Fix ruff issue * Remove erroneous `getMulticastTableEntry(0)` * Fix unit tests * Support `GET_BUILD_STRING_REQ` * Fix up after rebase * Add support for the `GET_FLOW_CONTROL_TYPE` XNCP command * Fix up after rebase * Coverage * Unit test XNCP commands * Move XNCP tests into their own module * Get coverage up to 100%
- Loading branch information
Showing
8 changed files
with
569 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,161 @@ | ||
"""Custom EZSP commands.""" | ||
from __future__ import annotations | ||
|
||
import dataclasses | ||
import logging | ||
from typing import Callable | ||
|
||
import zigpy.types as t | ||
|
||
from bellows.types import EmberStatus, EzspMfgTokenId | ||
|
||
_LOGGER = logging.getLogger(__name__) | ||
|
||
COMMANDS: dict[XncpCommandId, type[XncpCommandPayload]] = {} | ||
REV_COMMANDS: dict[type[XncpCommandPayload], XncpCommandId] = {} | ||
|
||
|
||
def register_command(command_id: XncpCommandId) -> Callable[[type], type]: | ||
def decorator(cls: type) -> type: | ||
COMMANDS[command_id] = cls | ||
REV_COMMANDS[cls] = command_id | ||
return cls | ||
|
||
return decorator | ||
|
||
|
||
class Bytes(bytes): | ||
def serialize(self) -> Bytes: | ||
return self | ||
|
||
@classmethod | ||
def deserialize(cls, data: bytes) -> tuple[Bytes, bytes]: | ||
return cls(data), b"" | ||
|
||
|
||
class XncpCommandId(t.enum16): | ||
GET_SUPPORTED_FEATURES_REQ = 0x0000 | ||
SET_SOURCE_ROUTE_REQ = 0x0001 | ||
GET_MFG_TOKEN_OVERRIDE_REQ = 0x0002 | ||
GET_BUILD_STRING_REQ = 0x0003 | ||
GET_FLOW_CONTROL_TYPE_REQ = 0x0004 | ||
|
||
GET_SUPPORTED_FEATURES_RSP = GET_SUPPORTED_FEATURES_REQ | 0x8000 | ||
SET_SOURCE_ROUTE_RSP = SET_SOURCE_ROUTE_REQ | 0x8000 | ||
GET_MFG_TOKEN_OVERRIDE_RSP = GET_MFG_TOKEN_OVERRIDE_REQ | 0x8000 | ||
GET_BUILD_STRING_RSP = GET_BUILD_STRING_REQ | 0x8000 | ||
GET_FLOW_CONTROL_TYPE_RSP = GET_FLOW_CONTROL_TYPE_REQ | 0x8000 | ||
|
||
UNKNOWN = 0xFFFF | ||
|
||
|
||
@dataclasses.dataclass | ||
class XncpCommand: | ||
command_id: XncpCommandId | ||
status: EmberStatus | ||
payload: XncpCommandPayload | ||
|
||
@classmethod | ||
def from_payload(cls, payload: XncpCommandPayload) -> XncpCommand: | ||
return cls( | ||
command_id=REV_COMMANDS[type(payload)], | ||
status=EmberStatus.SUCCESS, | ||
payload=payload, | ||
) | ||
|
||
@classmethod | ||
def from_bytes(cls, data: bytes) -> XncpCommand: | ||
command_id, data = XncpCommandId.deserialize(data) | ||
status, data = EmberStatus.deserialize(data) | ||
payload, rest = COMMANDS[command_id].deserialize(data) | ||
|
||
if rest: | ||
_LOGGER.debug("Unparsed data remains after %s frame: %s", payload, rest) | ||
|
||
return cls(command_id=command_id, status=status, payload=payload) | ||
|
||
def serialize(self) -> Bytes: | ||
return ( | ||
self.command_id.serialize() | ||
+ self.status.serialize() | ||
+ self.payload.serialize() | ||
) | ||
|
||
|
||
class FirmwareFeatures(t.bitmap32): | ||
NONE = 0 | ||
|
||
# The firmware passes through all group traffic, regardless of group membership | ||
MEMBER_OF_ALL_GROUPS = 1 << 0 | ||
|
||
# Source routes can be overridden by the application | ||
MANUAL_SOURCE_ROUTE = 1 << 1 | ||
|
||
# The firmware supports overriding some manufacturing tokens | ||
MFG_TOKEN_OVERRIDES = 1 << 2 | ||
|
||
# The firmware contains a free-form build string | ||
BUILD_STRING = 1 << 3 | ||
|
||
# The flow control type (software or hardware) can be queried | ||
FLOW_CONTROL_TYPE = 1 << 4 | ||
|
||
|
||
class XncpCommandPayload(t.Struct): | ||
pass | ||
|
||
|
||
class FlowControlType(t.enum8): | ||
Software = 0x00 | ||
Hardware = 0x01 | ||
|
||
|
||
@register_command(XncpCommandId.GET_SUPPORTED_FEATURES_REQ) | ||
class GetSupportedFeaturesReq(XncpCommandPayload): | ||
pass | ||
|
||
|
||
@register_command(XncpCommandId.GET_SUPPORTED_FEATURES_RSP) | ||
class GetSupportedFeaturesRsp(XncpCommandPayload): | ||
features: FirmwareFeatures | ||
|
||
|
||
@register_command(XncpCommandId.SET_SOURCE_ROUTE_REQ) | ||
class SetSourceRouteReq(XncpCommandPayload): | ||
destination: t.NWK | ||
source_route: t.List[t.NWK] | ||
|
||
|
||
@register_command(XncpCommandId.SET_SOURCE_ROUTE_RSP) | ||
class SetSourceRouteRsp(XncpCommandPayload): | ||
pass | ||
|
||
|
||
@register_command(XncpCommandId.GET_MFG_TOKEN_OVERRIDE_REQ) | ||
class GetMfgTokenOverrideReq(XncpCommandPayload): | ||
token: EzspMfgTokenId | ||
|
||
|
||
@register_command(XncpCommandId.GET_MFG_TOKEN_OVERRIDE_RSP) | ||
class GetMfgTokenOverrideRsp(XncpCommandPayload): | ||
value: Bytes | ||
|
||
|
||
@register_command(XncpCommandId.GET_BUILD_STRING_REQ) | ||
class GetBuildStringReq(XncpCommandPayload): | ||
pass | ||
|
||
|
||
@register_command(XncpCommandId.GET_BUILD_STRING_RSP) | ||
class GetBuildStringRsp(XncpCommandPayload): | ||
build_string: Bytes | ||
|
||
|
||
@register_command(XncpCommandId.GET_FLOW_CONTROL_TYPE_REQ) | ||
class GetFlowControlTypeReq(XncpCommandPayload): | ||
pass | ||
|
||
|
||
@register_command(XncpCommandId.GET_FLOW_CONTROL_TYPE_RSP) | ||
class GetFlowControlTypeRsp(XncpCommandPayload): | ||
flow_control_type: FlowControlType |
Oops, something went wrong.