zigbee-herdsman 0.51.0 → 0.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +4 -2
- package/.prettierrc +9 -0
- package/.release-please-manifest.json +1 -1
- package/CHANGELOG.md +25 -0
- package/dist/adapter/adapter.d.ts +4 -4
- package/dist/adapter/adapter.d.ts.map +1 -1
- package/dist/adapter/adapter.js +8 -13
- package/dist/adapter/adapter.js.map +1 -1
- package/dist/adapter/deconz/adapter/deconzAdapter.d.ts +1 -1
- package/dist/adapter/deconz/adapter/deconzAdapter.d.ts.map +1 -1
- package/dist/adapter/deconz/adapter/deconzAdapter.js +249 -155
- package/dist/adapter/deconz/adapter/deconzAdapter.js.map +1 -1
- package/dist/adapter/deconz/adapter/index.d.ts +1 -1
- package/dist/adapter/deconz/adapter/index.d.ts.map +1 -1
- package/dist/adapter/deconz/adapter/index.js.map +1 -1
- package/dist/adapter/deconz/driver/constants.d.ts +1 -1
- package/dist/adapter/deconz/driver/constants.d.ts.map +1 -1
- package/dist/adapter/deconz/driver/constants.js +7 -7
- package/dist/adapter/deconz/driver/constants.js.map +1 -1
- package/dist/adapter/deconz/driver/driver.d.ts.map +1 -1
- package/dist/adapter/deconz/driver/driver.js +92 -60
- package/dist/adapter/deconz/driver/driver.js.map +1 -1
- package/dist/adapter/deconz/driver/frameParser.d.ts.map +1 -1
- package/dist/adapter/deconz/driver/frameParser.js +55 -46
- package/dist/adapter/deconz/driver/frameParser.js.map +1 -1
- package/dist/adapter/deconz/driver/parser.js +1 -1
- package/dist/adapter/ember/adapter/emberAdapter.d.ts +5 -5
- package/dist/adapter/ember/adapter/emberAdapter.d.ts.map +1 -1
- package/dist/adapter/ember/adapter/emberAdapter.js +803 -955
- package/dist/adapter/ember/adapter/emberAdapter.js.map +1 -1
- package/dist/adapter/ember/adapter/endpoints.d.ts.map +1 -1
- package/dist/adapter/ember/adapter/endpoints.js +4 -2
- package/dist/adapter/ember/adapter/endpoints.js.map +1 -1
- package/dist/adapter/ember/adapter/oneWaitress.d.ts +2 -2
- package/dist/adapter/ember/adapter/oneWaitress.d.ts.map +1 -1
- package/dist/adapter/ember/adapter/oneWaitress.js +16 -16
- package/dist/adapter/ember/adapter/oneWaitress.js.map +1 -1
- package/dist/adapter/ember/adapter/tokensManager.d.ts +3 -3
- package/dist/adapter/ember/adapter/tokensManager.d.ts.map +1 -1
- package/dist/adapter/ember/adapter/tokensManager.js +86 -85
- package/dist/adapter/ember/adapter/tokensManager.js.map +1 -1
- package/dist/adapter/ember/consts.d.ts.map +1 -1
- package/dist/adapter/ember/consts.js +27 -27
- package/dist/adapter/ember/consts.js.map +1 -1
- package/dist/adapter/ember/enums.d.ts +2 -2
- package/dist/adapter/ember/enums.d.ts.map +1 -1
- package/dist/adapter/ember/enums.js +8 -50
- package/dist/adapter/ember/enums.js.map +1 -1
- package/dist/adapter/ember/ezsp/buffalo.d.ts +4 -4
- package/dist/adapter/ember/ezsp/buffalo.d.ts.map +1 -1
- package/dist/adapter/ember/ezsp/buffalo.js +35 -34
- package/dist/adapter/ember/ezsp/buffalo.js.map +1 -1
- package/dist/adapter/ember/ezsp/consts.d.ts.map +1 -1
- package/dist/adapter/ember/ezsp/consts.js +4 -4
- package/dist/adapter/ember/ezsp/consts.js.map +1 -1
- package/dist/adapter/ember/ezsp/enums.d.ts.map +1 -1
- package/dist/adapter/ember/ezsp/enums.js +0 -2
- package/dist/adapter/ember/ezsp/enums.js.map +1 -1
- package/dist/adapter/ember/ezsp/ezsp.d.ts +23 -20
- package/dist/adapter/ember/ezsp/ezsp.d.ts.map +1 -1
- package/dist/adapter/ember/ezsp/ezsp.js +1146 -1141
- package/dist/adapter/ember/ezsp/ezsp.js.map +1 -1
- package/dist/adapter/ember/ezspError.d.ts +1 -1
- package/dist/adapter/ember/ezspError.d.ts.map +1 -1
- package/dist/adapter/ember/ezspError.js.map +1 -1
- package/dist/adapter/ember/types.d.ts +2 -1
- package/dist/adapter/ember/types.d.ts.map +1 -1
- package/dist/adapter/ember/uart/ash.d.ts +5 -5
- package/dist/adapter/ember/uart/ash.d.ts.map +1 -1
- package/dist/adapter/ember/uart/ash.js +66 -65
- package/dist/adapter/ember/uart/ash.js.map +1 -1
- package/dist/adapter/ember/uart/consts.d.ts.map +1 -1
- package/dist/adapter/ember/uart/consts.js +9 -9
- package/dist/adapter/ember/uart/consts.js.map +1 -1
- package/dist/adapter/ember/uart/enums.d.ts.map +1 -1
- package/dist/adapter/ember/uart/parser.d.ts +1 -1
- package/dist/adapter/ember/uart/parser.d.ts.map +1 -1
- package/dist/adapter/ember/uart/parser.js +1 -1
- package/dist/adapter/ember/uart/parser.js.map +1 -1
- package/dist/adapter/ember/uart/queues.d.ts.map +1 -1
- package/dist/adapter/ember/uart/queues.js +1 -1
- package/dist/adapter/ember/uart/queues.js.map +1 -1
- package/dist/adapter/ember/uart/writer.d.ts +1 -1
- package/dist/adapter/ember/uart/writer.d.ts.map +1 -1
- package/dist/adapter/ember/uart/writer.js +2 -3
- package/dist/adapter/ember/uart/writer.js.map +1 -1
- package/dist/adapter/ember/utils/initters.d.ts +2 -2
- package/dist/adapter/ember/utils/initters.d.ts.map +1 -1
- package/dist/adapter/ember/utils/initters.js +1 -0
- package/dist/adapter/ember/utils/initters.js.map +1 -1
- package/dist/adapter/ember/utils/math.d.ts.map +1 -1
- package/dist/adapter/ember/utils/math.js +11 -11
- package/dist/adapter/ember/utils/math.js.map +1 -1
- package/dist/adapter/events.d.ts +1 -1
- package/dist/adapter/events.d.ts.map +1 -1
- package/dist/adapter/ezsp/adapter/backup.d.ts +1 -1
- package/dist/adapter/ezsp/adapter/backup.d.ts.map +1 -1
- package/dist/adapter/ezsp/adapter/backup.js +11 -10
- package/dist/adapter/ezsp/adapter/backup.js.map +1 -1
- package/dist/adapter/ezsp/adapter/ezspAdapter.d.ts +4 -4
- package/dist/adapter/ezsp/adapter/ezspAdapter.d.ts.map +1 -1
- package/dist/adapter/ezsp/adapter/ezspAdapter.js +74 -41
- package/dist/adapter/ezsp/adapter/ezspAdapter.js.map +1 -1
- package/dist/adapter/ezsp/adapter/index.d.ts +1 -1
- package/dist/adapter/ezsp/adapter/index.d.ts.map +1 -1
- package/dist/adapter/ezsp/adapter/index.js.map +1 -1
- package/dist/adapter/ezsp/driver/commands.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/commands.js +452 -452
- package/dist/adapter/ezsp/driver/commands.js.map +1 -1
- package/dist/adapter/ezsp/driver/consts.js +4 -4
- package/dist/adapter/ezsp/driver/consts.js.map +1 -1
- package/dist/adapter/ezsp/driver/driver.d.ts +5 -5
- package/dist/adapter/ezsp/driver/driver.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/driver.js +82 -82
- package/dist/adapter/ezsp/driver/driver.js.map +1 -1
- package/dist/adapter/ezsp/driver/ezsp.d.ts +3 -3
- package/dist/adapter/ezsp/driver/ezsp.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/ezsp.js +58 -58
- package/dist/adapter/ezsp/driver/ezsp.js.map +1 -1
- package/dist/adapter/ezsp/driver/frame.js +9 -9
- package/dist/adapter/ezsp/driver/frame.js.map +1 -1
- package/dist/adapter/ezsp/driver/index.d.ts +1 -1
- package/dist/adapter/ezsp/driver/index.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/index.js +2 -2
- package/dist/adapter/ezsp/driver/index.js.map +1 -1
- package/dist/adapter/ezsp/driver/multicast.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/multicast.js +1 -1
- package/dist/adapter/ezsp/driver/multicast.js.map +1 -1
- package/dist/adapter/ezsp/driver/parser.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/parser.js +1 -1
- package/dist/adapter/ezsp/driver/parser.js.map +1 -1
- package/dist/adapter/ezsp/driver/types/basic.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/types/basic.js +5 -5
- package/dist/adapter/ezsp/driver/types/basic.js.map +1 -1
- package/dist/adapter/ezsp/driver/types/index.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/types/index.js.map +1 -1
- package/dist/adapter/ezsp/driver/types/named.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/types/named.js +236 -234
- package/dist/adapter/ezsp/driver/types/named.js.map +1 -1
- package/dist/adapter/ezsp/driver/types/struct.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/types/struct.js +5 -3
- package/dist/adapter/ezsp/driver/types/struct.js.map +1 -1
- package/dist/adapter/ezsp/driver/uart.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/uart.js +8 -8
- package/dist/adapter/ezsp/driver/uart.js.map +1 -1
- package/dist/adapter/ezsp/driver/utils/index.d.ts +1 -1
- package/dist/adapter/ezsp/driver/utils/index.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/utils/index.js +12 -11
- package/dist/adapter/ezsp/driver/utils/index.js.map +1 -1
- package/dist/adapter/ezsp/driver/writer.d.ts.map +1 -1
- package/dist/adapter/ezsp/driver/writer.js +6 -7
- package/dist/adapter/ezsp/driver/writer.js.map +1 -1
- package/dist/adapter/index.d.ts +2 -2
- package/dist/adapter/index.d.ts.map +1 -1
- package/dist/adapter/index.js +2 -2
- package/dist/adapter/index.js.map +1 -1
- package/dist/adapter/serialPort.d.ts +1 -1
- package/dist/adapter/serialPort.d.ts.map +1 -1
- package/dist/adapter/serialPort.js +1 -1
- package/dist/adapter/serialPort.js.map +1 -1
- package/dist/adapter/serialPortUtils.js +1 -1
- package/dist/adapter/serialPortUtils.js.map +1 -1
- package/dist/adapter/socketPortUtils.js +3 -3
- package/dist/adapter/tstype.d.ts +1 -1
- package/dist/adapter/tstype.d.ts.map +1 -1
- package/dist/adapter/z-stack/adapter/adapter-backup.d.ts +3 -3
- package/dist/adapter/z-stack/adapter/adapter-backup.d.ts.map +1 -1
- package/dist/adapter/z-stack/adapter/adapter-backup.js +101 -86
- package/dist/adapter/z-stack/adapter/adapter-backup.js.map +1 -1
- package/dist/adapter/z-stack/adapter/adapter-nv-memory.d.ts +10 -10
- package/dist/adapter/z-stack/adapter/adapter-nv-memory.d.ts.map +1 -1
- package/dist/adapter/z-stack/adapter/adapter-nv-memory.js +30 -24
- package/dist/adapter/z-stack/adapter/adapter-nv-memory.js.map +1 -1
- package/dist/adapter/z-stack/adapter/endpoints.d.ts.map +1 -1
- package/dist/adapter/z-stack/adapter/endpoints.js +4 -4
- package/dist/adapter/z-stack/adapter/endpoints.js.map +1 -1
- package/dist/adapter/z-stack/adapter/index.d.ts +1 -1
- package/dist/adapter/z-stack/adapter/index.d.ts.map +1 -1
- package/dist/adapter/z-stack/adapter/index.js.map +1 -1
- package/dist/adapter/z-stack/adapter/manager.d.ts +5 -5
- package/dist/adapter/z-stack/adapter/manager.d.ts.map +1 -1
- package/dist/adapter/z-stack/adapter/manager.js +90 -81
- package/dist/adapter/z-stack/adapter/manager.js.map +1 -1
- package/dist/adapter/z-stack/adapter/tstype.d.ts +1 -1
- package/dist/adapter/z-stack/adapter/tstype.d.ts.map +1 -1
- package/dist/adapter/z-stack/adapter/zStackAdapter.d.ts +5 -5
- package/dist/adapter/z-stack/adapter/zStackAdapter.d.ts.map +1 -1
- package/dist/adapter/z-stack/adapter/zStackAdapter.js +72 -57
- package/dist/adapter/z-stack/adapter/zStackAdapter.js.map +1 -1
- package/dist/adapter/z-stack/constants/af.js +5 -5
- package/dist/adapter/z-stack/constants/af.js.map +1 -1
- package/dist/adapter/z-stack/constants/dbg.js +2 -2
- package/dist/adapter/z-stack/constants/index.d.ts +2 -2
- package/dist/adapter/z-stack/constants/index.d.ts.map +1 -1
- package/dist/adapter/z-stack/constants/index.js +2 -2
- package/dist/adapter/z-stack/constants/index.js.map +1 -1
- package/dist/adapter/z-stack/constants/mac.js +11 -11
- package/dist/adapter/z-stack/constants/sapi.js +4 -4
- package/dist/adapter/z-stack/constants/sys.js +11 -11
- package/dist/adapter/z-stack/constants/util.js +11 -11
- package/dist/adapter/z-stack/constants/utils.d.ts.map +1 -1
- package/dist/adapter/z-stack/constants/utils.js +3 -3
- package/dist/adapter/z-stack/constants/utils.js.map +1 -1
- package/dist/adapter/z-stack/constants/zdo.js +13 -13
- package/dist/adapter/z-stack/models/index.d.ts +1 -1
- package/dist/adapter/z-stack/models/startup-options.d.ts +2 -2
- package/dist/adapter/z-stack/structs/entries/address-manager-entry.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/address-manager-entry.js +4 -4
- package/dist/adapter/z-stack/structs/entries/address-manager-entry.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/address-manager-table.d.ts +2 -2
- package/dist/adapter/z-stack/structs/entries/address-manager-table.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/address-manager-table.js +4 -7
- package/dist/adapter/z-stack/structs/entries/address-manager-table.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/aps-link-key-data-entry.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/aps-link-key-data-entry.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/aps-link-key-data-entry.js +1 -5
- package/dist/adapter/z-stack/structs/entries/aps-link-key-data-entry.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/aps-link-key-data-table.d.ts +2 -2
- package/dist/adapter/z-stack/structs/entries/aps-link-key-data-table.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/aps-link-key-data-table.js +3 -6
- package/dist/adapter/z-stack/structs/entries/aps-link-key-data-table.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/aps-tc-link-key-entry.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/aps-tc-link-key-entry.js +6 -6
- package/dist/adapter/z-stack/structs/entries/aps-tc-link-key-table.d.ts +2 -2
- package/dist/adapter/z-stack/structs/entries/aps-tc-link-key-table.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/aps-tc-link-key-table.js +3 -6
- package/dist/adapter/z-stack/structs/entries/aps-tc-link-key-table.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/channel-list.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/channel-list.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/channel-list.js +1 -3
- package/dist/adapter/z-stack/structs/entries/channel-list.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/has-configured.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/has-configured.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/has-configured.js +2 -2
- package/dist/adapter/z-stack/structs/entries/has-configured.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/index.d.ts +16 -16
- package/dist/adapter/z-stack/structs/entries/nib.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/nib.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nib.js +50 -50
- package/dist/adapter/z-stack/structs/entries/nib.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-key-descriptor.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-key-descriptor.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-key-descriptor.js +1 -4
- package/dist/adapter/z-stack/structs/entries/nwk-key-descriptor.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-key.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-key.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-key.js +1 -3
- package/dist/adapter/z-stack/structs/entries/nwk-key.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-pan-id.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-pan-id.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-pan-id.js +1 -3
- package/dist/adapter/z-stack/structs/entries/nwk-pan-id.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-sec-material-descriptor-entry.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-sec-material-descriptor-entry.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-sec-material-descriptor-entry.js +3 -3
- package/dist/adapter/z-stack/structs/entries/nwk-sec-material-descriptor-entry.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-sec-material-descriptor-table.d.ts +2 -2
- package/dist/adapter/z-stack/structs/entries/nwk-sec-material-descriptor-table.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/nwk-sec-material-descriptor-table.js +3 -6
- package/dist/adapter/z-stack/structs/entries/nwk-sec-material-descriptor-table.js.map +1 -1
- package/dist/adapter/z-stack/structs/entries/security-manager-entry.d.ts +1 -1
- package/dist/adapter/z-stack/structs/entries/security-manager-entry.js +4 -4
- package/dist/adapter/z-stack/structs/entries/security-manager-table.d.ts +2 -2
- package/dist/adapter/z-stack/structs/entries/security-manager-table.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/entries/security-manager-table.js +3 -7
- package/dist/adapter/z-stack/structs/entries/security-manager-table.js.map +1 -1
- package/dist/adapter/z-stack/structs/index.d.ts +4 -4
- package/dist/adapter/z-stack/structs/serializable-memory-object.d.ts +1 -1
- package/dist/adapter/z-stack/structs/struct.d.ts +6 -6
- package/dist/adapter/z-stack/structs/struct.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/struct.js +53 -52
- package/dist/adapter/z-stack/structs/struct.js.map +1 -1
- package/dist/adapter/z-stack/structs/table.d.ts +3 -3
- package/dist/adapter/z-stack/structs/table.d.ts.map +1 -1
- package/dist/adapter/z-stack/structs/table.js +16 -16
- package/dist/adapter/z-stack/structs/table.js.map +1 -1
- package/dist/adapter/z-stack/unpi/constants.d.ts +1 -1
- package/dist/adapter/z-stack/unpi/constants.d.ts.map +1 -1
- package/dist/adapter/z-stack/unpi/constants.js +1 -1
- package/dist/adapter/z-stack/unpi/constants.js.map +1 -1
- package/dist/adapter/z-stack/unpi/frame.d.ts.map +1 -1
- package/dist/adapter/z-stack/unpi/frame.js +5 -6
- package/dist/adapter/z-stack/unpi/frame.js.map +1 -1
- package/dist/adapter/z-stack/unpi/index.d.ts +4 -4
- package/dist/adapter/z-stack/unpi/index.d.ts.map +1 -1
- package/dist/adapter/z-stack/unpi/index.js +6 -6
- package/dist/adapter/z-stack/unpi/index.js.map +1 -1
- package/dist/adapter/z-stack/unpi/parser.d.ts.map +1 -1
- package/dist/adapter/z-stack/unpi/parser.js +1 -1
- package/dist/adapter/z-stack/unpi/parser.js.map +1 -1
- package/dist/adapter/z-stack/unpi/writer.d.ts.map +1 -1
- package/dist/adapter/z-stack/unpi/writer.js.map +1 -1
- package/dist/adapter/z-stack/utils/channel-list.d.ts.map +1 -1
- package/dist/adapter/z-stack/utils/channel-list.js +5 -2
- package/dist/adapter/z-stack/utils/channel-list.js.map +1 -1
- package/dist/adapter/z-stack/utils/index.d.ts +2 -2
- package/dist/adapter/z-stack/utils/network-options.d.ts +1 -1
- package/dist/adapter/z-stack/utils/network-options.d.ts.map +1 -1
- package/dist/adapter/z-stack/utils/network-options.js +1 -1
- package/dist/adapter/z-stack/utils/network-options.js.map +1 -1
- package/dist/adapter/z-stack/znp/buffaloZnp.d.ts.map +1 -1
- package/dist/adapter/z-stack/znp/buffaloZnp.js +8 -8
- package/dist/adapter/z-stack/znp/buffaloZnp.js.map +1 -1
- package/dist/adapter/z-stack/znp/definition.d.ts.map +1 -1
- package/dist/adapter/z-stack/znp/definition.js +200 -592
- package/dist/adapter/z-stack/znp/definition.js.map +1 -1
- package/dist/adapter/z-stack/znp/index.d.ts +1 -1
- package/dist/adapter/z-stack/znp/index.d.ts.map +1 -1
- package/dist/adapter/z-stack/znp/index.js.map +1 -1
- package/dist/adapter/z-stack/znp/parameterType.d.ts.map +1 -1
- package/dist/adapter/z-stack/znp/parameterType.js.map +1 -1
- package/dist/adapter/z-stack/znp/tstype.d.ts.map +1 -1
- package/dist/adapter/z-stack/znp/znp.d.ts +3 -3
- package/dist/adapter/z-stack/znp/znp.d.ts.map +1 -1
- package/dist/adapter/z-stack/znp/znp.js +12 -15
- package/dist/adapter/z-stack/znp/znp.js.map +1 -1
- package/dist/adapter/z-stack/znp/zpiObject.d.ts +1 -1
- package/dist/adapter/z-stack/znp/zpiObject.d.ts.map +1 -1
- package/dist/adapter/z-stack/znp/zpiObject.js +17 -9
- package/dist/adapter/z-stack/znp/zpiObject.js.map +1 -1
- package/dist/adapter/zigate/adapter/index.d.ts.map +1 -1
- package/dist/adapter/zigate/adapter/index.js.map +1 -1
- package/dist/adapter/zigate/adapter/zigateAdapter.d.ts +1 -1
- package/dist/adapter/zigate/adapter/zigateAdapter.d.ts.map +1 -1
- package/dist/adapter/zigate/adapter/zigateAdapter.js +88 -92
- package/dist/adapter/zigate/adapter/zigateAdapter.js.map +1 -1
- package/dist/adapter/zigate/driver/buffaloZiGate.js.map +1 -1
- package/dist/adapter/zigate/driver/commandType.d.ts +2 -2
- package/dist/adapter/zigate/driver/commandType.d.ts.map +1 -1
- package/dist/adapter/zigate/driver/commandType.js +72 -80
- package/dist/adapter/zigate/driver/commandType.js.map +1 -1
- package/dist/adapter/zigate/driver/constants.d.ts +9 -9
- package/dist/adapter/zigate/driver/constants.d.ts.map +1 -1
- package/dist/adapter/zigate/driver/constants.js +11 -65
- package/dist/adapter/zigate/driver/constants.js.map +1 -1
- package/dist/adapter/zigate/driver/frame.d.ts.map +1 -1
- package/dist/adapter/zigate/driver/frame.js +3 -15
- package/dist/adapter/zigate/driver/frame.js.map +1 -1
- package/dist/adapter/zigate/driver/messageType.d.ts +1 -1
- package/dist/adapter/zigate/driver/messageType.d.ts.map +1 -1
- package/dist/adapter/zigate/driver/messageType.js +29 -30
- package/dist/adapter/zigate/driver/messageType.js.map +1 -1
- package/dist/adapter/zigate/driver/parameterType.d.ts.map +1 -1
- package/dist/adapter/zigate/driver/parameterType.js.map +1 -1
- package/dist/adapter/zigate/driver/ziGateObject.d.ts +2 -2
- package/dist/adapter/zigate/driver/ziGateObject.d.ts.map +1 -1
- package/dist/adapter/zigate/driver/ziGateObject.js +11 -5
- package/dist/adapter/zigate/driver/ziGateObject.js.map +1 -1
- package/dist/adapter/zigate/driver/zigate.d.ts +5 -5
- package/dist/adapter/zigate/driver/zigate.d.ts.map +1 -1
- package/dist/adapter/zigate/driver/zigate.js +12 -12
- package/dist/adapter/zigate/driver/zigate.js.map +1 -1
- package/dist/buffalo/buffalo.d.ts +1 -1
- package/dist/buffalo/buffalo.d.ts.map +1 -1
- package/dist/buffalo/buffalo.js +1 -1
- package/dist/buffalo/buffalo.js.map +1 -1
- package/dist/controller/controller.d.ts.map +1 -1
- package/dist/controller/controller.js +34 -33
- package/dist/controller/controller.js.map +1 -1
- package/dist/controller/database.d.ts.map +1 -1
- package/dist/controller/database.js +6 -2
- package/dist/controller/database.js.map +1 -1
- package/dist/controller/events.d.ts +3 -3
- package/dist/controller/events.d.ts.map +1 -1
- package/dist/controller/greenPower.d.ts +1 -1
- package/dist/controller/greenPower.d.ts.map +1 -1
- package/dist/controller/greenPower.js +15 -17
- package/dist/controller/greenPower.js.map +1 -1
- package/dist/controller/helpers/index.d.ts +1 -1
- package/dist/controller/helpers/index.d.ts.map +1 -1
- package/dist/controller/helpers/index.js.map +1 -1
- package/dist/controller/helpers/request.d.ts +1 -1
- package/dist/controller/helpers/request.d.ts.map +1 -1
- package/dist/controller/helpers/request.js +7 -10
- package/dist/controller/helpers/request.js.map +1 -1
- package/dist/controller/helpers/requestQueue.d.ts.map +1 -1
- package/dist/controller/helpers/requestQueue.js +2 -3
- package/dist/controller/helpers/requestQueue.js.map +1 -1
- package/dist/controller/helpers/zclFrameConverter.d.ts +1 -1
- package/dist/controller/helpers/zclFrameConverter.d.ts.map +1 -1
- package/dist/controller/helpers/zclFrameConverter.js.map +1 -1
- package/dist/controller/index.d.ts +1 -1
- package/dist/controller/index.d.ts.map +1 -1
- package/dist/controller/index.js.map +1 -1
- package/dist/controller/model/device.d.ts +3 -3
- package/dist/controller/model/device.d.ts.map +1 -1
- package/dist/controller/model/device.js +247 -94
- package/dist/controller/model/device.js.map +1 -1
- package/dist/controller/model/endpoint.d.ts +4 -4
- package/dist/controller/model/endpoint.d.ts.map +1 -1
- package/dist/controller/model/endpoint.js +45 -31
- package/dist/controller/model/endpoint.js.map +1 -1
- package/dist/controller/model/entity.d.ts +2 -2
- package/dist/controller/model/entity.d.ts.map +1 -1
- package/dist/controller/model/entity.js.map +1 -1
- package/dist/controller/model/group.d.ts +2 -2
- package/dist/controller/model/group.d.ts.map +1 -1
- package/dist/controller/model/group.js +8 -6
- package/dist/controller/model/group.js.map +1 -1
- package/dist/controller/model/index.d.ts +1 -1
- package/dist/controller/model/index.d.ts.map +1 -1
- package/dist/controller/model/index.js.map +1 -1
- package/dist/controller/touchlink.d.ts.map +1 -1
- package/dist/controller/touchlink.js +2 -2
- package/dist/controller/touchlink.js.map +1 -1
- package/dist/controller/tstype.d.ts.map +1 -1
- package/dist/controller/tstype.js +0 -1
- package/dist/controller/tstype.js.map +1 -1
- package/dist/models/backup-storage-legacy.d.ts +4 -4
- package/dist/models/backup-storage-legacy.d.ts.map +1 -1
- package/dist/models/backup-storage-unified.d.ts +1 -1
- package/dist/models/backup.d.ts +2 -2
- package/dist/models/index.d.ts +4 -4
- package/dist/utils/backup.d.ts +1 -1
- package/dist/utils/backup.d.ts.map +1 -1
- package/dist/utils/backup.js +71 -58
- package/dist/utils/backup.js.map +1 -1
- package/dist/utils/index.d.ts +6 -6
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/index.js +10 -10
- package/dist/utils/index.js.map +1 -1
- package/dist/utils/isNumberArray.js +1 -1
- package/dist/utils/isNumberArray.js.map +1 -1
- package/dist/utils/queue.js +1 -1
- package/dist/utils/queue.js.map +1 -1
- package/dist/utils/waitress.d.ts.map +1 -1
- package/dist/utils/waitress.js +2 -2
- package/dist/utils/waitress.js.map +1 -1
- package/dist/zspec/consts.d.ts +1 -1
- package/dist/zspec/consts.d.ts.map +1 -1
- package/dist/zspec/consts.js +16 -16
- package/dist/zspec/consts.js.map +1 -1
- package/dist/zspec/enums.js +0 -1
- package/dist/zspec/enums.js.map +1 -1
- package/dist/zspec/utils.d.ts.map +1 -1
- package/dist/zspec/utils.js +5 -3
- package/dist/zspec/utils.js.map +1 -1
- package/dist/zspec/zcl/buffaloZcl.d.ts +2 -2
- package/dist/zspec/zcl/buffaloZcl.d.ts.map +1 -1
- package/dist/zspec/zcl/buffaloZcl.js +44 -51
- package/dist/zspec/zcl/buffaloZcl.js.map +1 -1
- package/dist/zspec/zcl/definition/cluster.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/cluster.js +284 -380
- package/dist/zspec/zcl/definition/cluster.js.map +1 -1
- package/dist/zspec/zcl/definition/consts.js +10 -10
- package/dist/zspec/zcl/definition/consts.js.map +1 -1
- package/dist/zspec/zcl/definition/enums.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/enums.js.map +1 -1
- package/dist/zspec/zcl/definition/foundation.d.ts +1 -1
- package/dist/zspec/zcl/definition/foundation.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/foundation.js +51 -22
- package/dist/zspec/zcl/definition/foundation.js.map +1 -1
- package/dist/zspec/zcl/definition/manufacturerCode.js +0 -1
- package/dist/zspec/zcl/definition/manufacturerCode.js.map +1 -1
- package/dist/zspec/zcl/definition/status.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/tstype.d.ts +1 -1
- package/dist/zspec/zcl/definition/tstype.d.ts.map +1 -1
- package/dist/zspec/zcl/definition/tstype.js +0 -1
- package/dist/zspec/zcl/definition/tstype.js.map +1 -1
- package/dist/zspec/zcl/utils.d.ts.map +1 -1
- package/dist/zspec/zcl/utils.js +59 -19
- package/dist/zspec/zcl/utils.js.map +1 -1
- package/dist/zspec/zcl/zclFrame.d.ts +1 -1
- package/dist/zspec/zcl/zclFrame.d.ts.map +1 -1
- package/dist/zspec/zcl/zclFrame.js +14 -15
- package/dist/zspec/zcl/zclFrame.js.map +1 -1
- package/dist/zspec/zcl/zclHeader.d.ts +1 -1
- package/dist/zspec/zcl/zclHeader.d.ts.map +1 -1
- package/dist/zspec/zcl/zclHeader.js +7 -7
- package/dist/zspec/zcl/zclHeader.js.map +1 -1
- package/dist/zspec/zcl/zclStatusError.d.ts.map +1 -1
- package/dist/zspec/zcl/zclStatusError.js.map +1 -1
- package/dist/zspec/zdo/buffaloZdo.d.ts +3 -3
- package/dist/zspec/zdo/buffaloZdo.d.ts.map +1 -1
- package/dist/zspec/zdo/buffaloZdo.js +92 -92
- package/dist/zspec/zdo/buffaloZdo.js.map +1 -1
- package/dist/zspec/zdo/definition/clusters.d.ts.map +1 -1
- package/dist/zspec/zdo/definition/clusters.js +0 -1
- package/dist/zspec/zdo/definition/clusters.js.map +1 -1
- package/dist/zspec/zdo/definition/consts.d.ts.map +1 -1
- package/dist/zspec/zdo/definition/consts.js.map +1 -1
- package/dist/zspec/zdo/definition/enums.d.ts.map +1 -1
- package/dist/zspec/zdo/definition/enums.js +0 -5
- package/dist/zspec/zdo/definition/enums.js.map +1 -1
- package/dist/zspec/zdo/definition/status.d.ts.map +1 -1
- package/dist/zspec/zdo/definition/status.js +0 -1
- package/dist/zspec/zdo/definition/status.js.map +1 -1
- package/dist/zspec/zdo/definition/tstypes.d.ts +2 -2
- package/dist/zspec/zdo/definition/tstypes.d.ts.map +1 -1
- package/dist/zspec/zdo/utils.d.ts.map +1 -1
- package/dist/zspec/zdo/utils.js +14 -14
- package/dist/zspec/zdo/utils.js.map +1 -1
- package/dist/zspec/zdo/zdoStatusError.d.ts.map +1 -1
- package/dist/zspec/zdo/zdoStatusError.js.map +1 -1
- package/package.json +6 -1
- package/dist/adapter/ember/adapter/requestQueue.d.ts +0 -67
- package/dist/adapter/ember/adapter/requestQueue.d.ts.map +0 -1
- package/dist/adapter/ember/adapter/requestQueue.js +0 -159
- package/dist/adapter/ember/adapter/requestQueue.js.map +0 -1
|
@@ -8,33 +8,33 @@ exports.FRAMES = {
|
|
|
8
8
|
version: {
|
|
9
9
|
ID: 0x0000,
|
|
10
10
|
request: {
|
|
11
|
-
desiredProtocolVersion: types_1.uint8_t
|
|
11
|
+
desiredProtocolVersion: types_1.uint8_t,
|
|
12
12
|
},
|
|
13
13
|
response: {
|
|
14
14
|
protocolVersion: types_1.uint8_t,
|
|
15
15
|
stackType: types_1.uint8_t,
|
|
16
|
-
stackVersion: types_1.uint16_t
|
|
17
|
-
}
|
|
16
|
+
stackVersion: types_1.uint16_t,
|
|
17
|
+
},
|
|
18
18
|
},
|
|
19
19
|
getConfigurationValue: {
|
|
20
20
|
ID: 0x0052, // 82
|
|
21
21
|
request: {
|
|
22
|
-
configId: types_1.EzspConfigId
|
|
22
|
+
configId: types_1.EzspConfigId,
|
|
23
23
|
},
|
|
24
24
|
response: {
|
|
25
25
|
status: types_1.EzspStatus,
|
|
26
|
-
value: types_1.uint16_t
|
|
27
|
-
}
|
|
26
|
+
value: types_1.uint16_t,
|
|
27
|
+
},
|
|
28
28
|
},
|
|
29
29
|
setConfigurationValue: {
|
|
30
30
|
ID: 0x0053, // 83
|
|
31
31
|
request: {
|
|
32
32
|
configId: types_1.EzspConfigId,
|
|
33
|
-
value: types_1.uint16_t
|
|
33
|
+
value: types_1.uint16_t,
|
|
34
34
|
},
|
|
35
35
|
response: {
|
|
36
|
-
status: types_1.EzspStatus
|
|
37
|
-
}
|
|
36
|
+
status: types_1.EzspStatus,
|
|
37
|
+
},
|
|
38
38
|
},
|
|
39
39
|
addEndpoint: {
|
|
40
40
|
ID: 0x0002,
|
|
@@ -49,18 +49,18 @@ exports.FRAMES = {
|
|
|
49
49
|
outputClusterList: types_1.WordList,
|
|
50
50
|
},
|
|
51
51
|
response: {
|
|
52
|
-
status: types_1.EzspStatus
|
|
53
|
-
}
|
|
52
|
+
status: types_1.EzspStatus,
|
|
53
|
+
},
|
|
54
54
|
},
|
|
55
55
|
setPolicy: {
|
|
56
56
|
ID: 0x0055, //85
|
|
57
57
|
request: {
|
|
58
58
|
policyId: types_1.EzspPolicyId,
|
|
59
|
-
decisionId: types_1.EzspDecisionId
|
|
59
|
+
decisionId: types_1.EzspDecisionId,
|
|
60
60
|
},
|
|
61
61
|
response: {
|
|
62
|
-
status: types_1.EzspStatus
|
|
63
|
-
}
|
|
62
|
+
status: types_1.EzspStatus,
|
|
63
|
+
},
|
|
64
64
|
},
|
|
65
65
|
getPolicy: {
|
|
66
66
|
ID: 0x0056, //86
|
|
@@ -69,8 +69,8 @@ exports.FRAMES = {
|
|
|
69
69
|
},
|
|
70
70
|
response: {
|
|
71
71
|
status: types_1.EzspStatus,
|
|
72
|
-
decisionId: types_1.EzspDecisionId
|
|
73
|
-
}
|
|
72
|
+
decisionId: types_1.EzspDecisionId,
|
|
73
|
+
},
|
|
74
74
|
},
|
|
75
75
|
sendPanIdUpdate: {
|
|
76
76
|
ID: 0x0057, //87
|
|
@@ -78,202 +78,202 @@ exports.FRAMES = {
|
|
|
78
78
|
newPan: types_1.EmberPanId,
|
|
79
79
|
},
|
|
80
80
|
response: {
|
|
81
|
-
status: types_1.Bool
|
|
82
|
-
}
|
|
81
|
+
status: types_1.Bool,
|
|
82
|
+
},
|
|
83
83
|
},
|
|
84
84
|
getValue: {
|
|
85
|
-
ID:
|
|
85
|
+
ID: 0x00aa, // 170
|
|
86
86
|
request: {
|
|
87
|
-
valueId: types_1.EzspValueId
|
|
87
|
+
valueId: types_1.EzspValueId,
|
|
88
88
|
},
|
|
89
89
|
response: {
|
|
90
90
|
status: types_1.EzspStatus,
|
|
91
|
-
value: types_1.LVBytes
|
|
92
|
-
}
|
|
91
|
+
value: types_1.LVBytes,
|
|
92
|
+
},
|
|
93
93
|
},
|
|
94
94
|
getExtendedValue: {
|
|
95
95
|
ID: 0x0003,
|
|
96
96
|
request: {
|
|
97
97
|
valueId: types_1.EzspExtendedValueId,
|
|
98
|
-
characteristics: types_1.uint32_t
|
|
98
|
+
characteristics: types_1.uint32_t,
|
|
99
99
|
},
|
|
100
100
|
response: {
|
|
101
101
|
status: types_1.EzspStatus,
|
|
102
|
-
value: types_1.LVBytes
|
|
103
|
-
}
|
|
102
|
+
value: types_1.LVBytes,
|
|
103
|
+
},
|
|
104
104
|
},
|
|
105
105
|
setValue: {
|
|
106
|
-
ID:
|
|
106
|
+
ID: 0x00ab, // 171
|
|
107
107
|
request: {
|
|
108
108
|
valueId: types_1.EzspValueId,
|
|
109
|
-
value: types_1.LVBytes
|
|
109
|
+
value: types_1.LVBytes,
|
|
110
110
|
},
|
|
111
111
|
response: {
|
|
112
|
-
status: types_1.EzspStatus
|
|
113
|
-
}
|
|
112
|
+
status: types_1.EzspStatus,
|
|
113
|
+
},
|
|
114
114
|
},
|
|
115
115
|
// Utilities Frames
|
|
116
116
|
nop: {
|
|
117
117
|
ID: 0x0005,
|
|
118
118
|
request: null,
|
|
119
|
-
response: null
|
|
119
|
+
response: null,
|
|
120
120
|
},
|
|
121
121
|
echo: {
|
|
122
122
|
ID: 0x0081, // 129
|
|
123
123
|
request: {
|
|
124
|
-
data: types_1.LVBytes
|
|
124
|
+
data: types_1.LVBytes,
|
|
125
125
|
},
|
|
126
126
|
response: {
|
|
127
|
-
echo: types_1.LVBytes
|
|
128
|
-
}
|
|
127
|
+
echo: types_1.LVBytes,
|
|
128
|
+
},
|
|
129
129
|
},
|
|
130
130
|
invalidCommand: {
|
|
131
131
|
ID: 0x0058, // 88
|
|
132
132
|
request: null,
|
|
133
133
|
response: {
|
|
134
|
-
reason: types_1.EzspStatus
|
|
135
|
-
}
|
|
134
|
+
reason: types_1.EzspStatus,
|
|
135
|
+
},
|
|
136
136
|
},
|
|
137
137
|
callback: {
|
|
138
138
|
ID: 0x0006,
|
|
139
139
|
request: null,
|
|
140
|
-
response: null
|
|
140
|
+
response: null,
|
|
141
141
|
},
|
|
142
142
|
noCallbacks: {
|
|
143
143
|
ID: 0x0007,
|
|
144
144
|
request: null,
|
|
145
|
-
response: null
|
|
145
|
+
response: null,
|
|
146
146
|
},
|
|
147
147
|
setToken: {
|
|
148
148
|
ID: 0x0009,
|
|
149
149
|
request: {
|
|
150
150
|
tokenId: types_1.uint8_t,
|
|
151
|
-
tokenData: (0, types_1.fixed_list)(8, types_1.uint8_t)
|
|
151
|
+
tokenData: (0, types_1.fixed_list)(8, types_1.uint8_t),
|
|
152
152
|
},
|
|
153
153
|
response: {
|
|
154
|
-
status: types_1.EmberStatus
|
|
155
|
-
}
|
|
154
|
+
status: types_1.EmberStatus,
|
|
155
|
+
},
|
|
156
156
|
},
|
|
157
157
|
getToken: {
|
|
158
|
-
ID:
|
|
158
|
+
ID: 0x000a, // 10
|
|
159
159
|
request: {
|
|
160
|
-
tokenId: types_1.uint8_t
|
|
160
|
+
tokenId: types_1.uint8_t,
|
|
161
161
|
},
|
|
162
162
|
response: {
|
|
163
163
|
status: types_1.EmberStatus,
|
|
164
|
-
tokenData: (0, types_1.fixed_list)(8, types_1.uint8_t)
|
|
165
|
-
}
|
|
164
|
+
tokenData: (0, types_1.fixed_list)(8, types_1.uint8_t),
|
|
165
|
+
},
|
|
166
166
|
},
|
|
167
167
|
getMfgToken: {
|
|
168
|
-
ID:
|
|
168
|
+
ID: 0x000b, // 11
|
|
169
169
|
request: {
|
|
170
|
-
tokenId: types_1.EzspMfgTokenId
|
|
170
|
+
tokenId: types_1.EzspMfgTokenId,
|
|
171
171
|
},
|
|
172
172
|
response: {
|
|
173
173
|
status: types_1.EmberStatus,
|
|
174
|
-
tokenData: types_1.LVBytes
|
|
175
|
-
}
|
|
174
|
+
tokenData: types_1.LVBytes,
|
|
175
|
+
},
|
|
176
176
|
},
|
|
177
177
|
setMfgToken: {
|
|
178
|
-
ID:
|
|
178
|
+
ID: 0x000c, // 12
|
|
179
179
|
request: {
|
|
180
180
|
tokenId: types_1.EzspMfgTokenId,
|
|
181
|
-
tokenData: types_1.LVBytes
|
|
181
|
+
tokenData: types_1.LVBytes,
|
|
182
182
|
},
|
|
183
183
|
response: {
|
|
184
|
-
status: types_1.EmberStatus
|
|
185
|
-
}
|
|
184
|
+
status: types_1.EmberStatus,
|
|
185
|
+
},
|
|
186
186
|
},
|
|
187
187
|
stackTokenChangedHandler: {
|
|
188
|
-
ID:
|
|
188
|
+
ID: 0x000d, // 13
|
|
189
189
|
request: null,
|
|
190
190
|
response: {
|
|
191
|
-
tokenAddress: types_1.uint16_t
|
|
192
|
-
}
|
|
191
|
+
tokenAddress: types_1.uint16_t,
|
|
192
|
+
},
|
|
193
193
|
},
|
|
194
194
|
getRandomNumber: {
|
|
195
195
|
ID: 0x0049, // 73
|
|
196
196
|
request: null,
|
|
197
197
|
response: {
|
|
198
198
|
status: types_1.EmberStatus,
|
|
199
|
-
value: types_1.uint16_t
|
|
200
|
-
}
|
|
199
|
+
value: types_1.uint16_t,
|
|
200
|
+
},
|
|
201
201
|
},
|
|
202
202
|
setTimer: {
|
|
203
|
-
ID:
|
|
203
|
+
ID: 0x000e, // 14
|
|
204
204
|
request: {
|
|
205
205
|
timerId: types_1.uint8_t,
|
|
206
206
|
time: types_1.uint16_t,
|
|
207
207
|
units: types_1.EmberEventUnits,
|
|
208
|
-
repeat: types_1.Bool
|
|
208
|
+
repeat: types_1.Bool,
|
|
209
209
|
},
|
|
210
210
|
response: {
|
|
211
|
-
status: types_1.EmberStatus
|
|
211
|
+
status: types_1.EmberStatus,
|
|
212
212
|
},
|
|
213
213
|
},
|
|
214
214
|
getTimer: {
|
|
215
|
-
ID:
|
|
215
|
+
ID: 0x004e, // 78
|
|
216
216
|
request: {
|
|
217
|
-
timerId: types_1.uint8_t
|
|
217
|
+
timerId: types_1.uint8_t,
|
|
218
218
|
},
|
|
219
219
|
response: {
|
|
220
220
|
time: types_1.uint16_t,
|
|
221
221
|
units: types_1.EmberEventUnits,
|
|
222
|
-
repeat: types_1.Bool
|
|
222
|
+
repeat: types_1.Bool,
|
|
223
223
|
},
|
|
224
224
|
},
|
|
225
225
|
timerHandler: {
|
|
226
|
-
ID:
|
|
226
|
+
ID: 0x000f, // 15
|
|
227
227
|
request: null,
|
|
228
228
|
response: {
|
|
229
|
-
timerId: types_1.uint8_t
|
|
229
|
+
timerId: types_1.uint8_t,
|
|
230
230
|
},
|
|
231
231
|
},
|
|
232
232
|
debugWrite: {
|
|
233
233
|
ID: 0x0012, // 18
|
|
234
234
|
request: {
|
|
235
235
|
binaryMessage: types_1.Bool,
|
|
236
|
-
message: types_1.LVBytes
|
|
236
|
+
message: types_1.LVBytes,
|
|
237
237
|
},
|
|
238
238
|
response: {
|
|
239
|
-
status: types_1.EmberStatus
|
|
239
|
+
status: types_1.EmberStatus,
|
|
240
240
|
},
|
|
241
241
|
},
|
|
242
242
|
readAndClearCounters: {
|
|
243
243
|
ID: 0x0065, // 101
|
|
244
244
|
request: null,
|
|
245
245
|
response: {
|
|
246
|
-
values: (0, types_1.fixed_list)(types_1.EmberCounterType.COUNTER_TYPE_COUNT, types_1.uint16_t)
|
|
246
|
+
values: (0, types_1.fixed_list)(types_1.EmberCounterType.COUNTER_TYPE_COUNT, types_1.uint16_t),
|
|
247
247
|
},
|
|
248
248
|
},
|
|
249
249
|
readCounters: {
|
|
250
|
-
ID:
|
|
250
|
+
ID: 0x00f1, // 241
|
|
251
251
|
request: null,
|
|
252
252
|
response: {
|
|
253
|
-
values: (0, types_1.fixed_list)(types_1.EmberCounterType.COUNTER_TYPE_COUNT, types_1.uint16_t)
|
|
253
|
+
values: (0, types_1.fixed_list)(types_1.EmberCounterType.COUNTER_TYPE_COUNT, types_1.uint16_t),
|
|
254
254
|
},
|
|
255
255
|
},
|
|
256
256
|
counterRolloverHandler: {
|
|
257
|
-
ID:
|
|
257
|
+
ID: 0x00f2, // 242
|
|
258
258
|
request: null,
|
|
259
259
|
response: {
|
|
260
|
-
type: types_1.EmberCounterType
|
|
260
|
+
type: types_1.EmberCounterType,
|
|
261
261
|
},
|
|
262
262
|
},
|
|
263
263
|
delayTest: {
|
|
264
|
-
ID:
|
|
264
|
+
ID: 0x009d, // 157
|
|
265
265
|
request: {
|
|
266
|
-
delay: types_1.uint16_t
|
|
266
|
+
delay: types_1.uint16_t,
|
|
267
267
|
},
|
|
268
268
|
response: null,
|
|
269
269
|
},
|
|
270
270
|
getLibraryStatus: {
|
|
271
271
|
ID: 0x0001,
|
|
272
272
|
request: {
|
|
273
|
-
libraryId: types_1.uint8_t
|
|
273
|
+
libraryId: types_1.uint8_t,
|
|
274
274
|
},
|
|
275
275
|
response: {
|
|
276
|
-
status: types_1.EmberLibraryStatus
|
|
276
|
+
status: types_1.EmberLibraryStatus,
|
|
277
277
|
},
|
|
278
278
|
},
|
|
279
279
|
getXncpInfo: {
|
|
@@ -282,52 +282,52 @@ exports.FRAMES = {
|
|
|
282
282
|
response: {
|
|
283
283
|
status: types_1.EmberStatus,
|
|
284
284
|
manufacturerId: types_1.uint16_t,
|
|
285
|
-
versionNumber: types_1.uint16_t
|
|
285
|
+
versionNumber: types_1.uint16_t,
|
|
286
286
|
},
|
|
287
287
|
},
|
|
288
288
|
customFrame: {
|
|
289
289
|
ID: 0x0047, // 71
|
|
290
290
|
request: {
|
|
291
|
-
payload: types_1.LVBytes
|
|
291
|
+
payload: types_1.LVBytes,
|
|
292
292
|
},
|
|
293
293
|
response: {
|
|
294
294
|
status: types_1.EmberStatus,
|
|
295
|
-
reply: types_1.LVBytes
|
|
295
|
+
reply: types_1.LVBytes,
|
|
296
296
|
},
|
|
297
297
|
},
|
|
298
298
|
customFrameHandler: {
|
|
299
299
|
ID: 0x0054, // 84
|
|
300
300
|
request: null,
|
|
301
301
|
response: {
|
|
302
|
-
payload: types_1.LVBytes
|
|
302
|
+
payload: types_1.LVBytes,
|
|
303
303
|
},
|
|
304
304
|
},
|
|
305
305
|
getEui64: {
|
|
306
306
|
ID: 0x0026, // 38
|
|
307
307
|
request: null,
|
|
308
308
|
response: {
|
|
309
|
-
eui64: types_1.EmberEUI64
|
|
309
|
+
eui64: types_1.EmberEUI64,
|
|
310
310
|
},
|
|
311
311
|
},
|
|
312
312
|
getNodeId: {
|
|
313
313
|
ID: 0x0027, // 39
|
|
314
314
|
request: null,
|
|
315
315
|
response: {
|
|
316
|
-
nodeId: types_1.EmberNodeId
|
|
316
|
+
nodeId: types_1.EmberNodeId,
|
|
317
317
|
},
|
|
318
318
|
},
|
|
319
319
|
// Networking Frames
|
|
320
320
|
setManufacturerCode: {
|
|
321
321
|
ID: 0x0015, // 21
|
|
322
322
|
request: {
|
|
323
|
-
code: types_1.uint16_t
|
|
323
|
+
code: types_1.uint16_t,
|
|
324
324
|
},
|
|
325
325
|
response: null,
|
|
326
326
|
},
|
|
327
327
|
setPowerDescriptor: {
|
|
328
328
|
ID: 0x0016, // 22
|
|
329
329
|
request: {
|
|
330
|
-
descriptor: types_1.uint16_t
|
|
330
|
+
descriptor: types_1.uint16_t,
|
|
331
331
|
},
|
|
332
332
|
response: null,
|
|
333
333
|
},
|
|
@@ -335,41 +335,41 @@ exports.FRAMES = {
|
|
|
335
335
|
ID: 0x0017, // 23
|
|
336
336
|
request: null,
|
|
337
337
|
response: {
|
|
338
|
-
status: types_1.EmberStatus
|
|
338
|
+
status: types_1.EmberStatus,
|
|
339
339
|
},
|
|
340
340
|
},
|
|
341
341
|
networkInitExtended: {
|
|
342
342
|
ID: 112,
|
|
343
343
|
request: {
|
|
344
|
-
networkInitStruct: types_1.EmberNetworkInitStruct
|
|
344
|
+
networkInitStruct: types_1.EmberNetworkInitStruct,
|
|
345
345
|
},
|
|
346
346
|
response: {
|
|
347
|
-
status: types_1.EmberStatus
|
|
347
|
+
status: types_1.EmberStatus,
|
|
348
348
|
},
|
|
349
349
|
},
|
|
350
350
|
networkState: {
|
|
351
351
|
ID: 0x0018, // 24
|
|
352
352
|
request: null,
|
|
353
353
|
response: {
|
|
354
|
-
status: types_1.EmberNetworkStatus
|
|
354
|
+
status: types_1.EmberNetworkStatus,
|
|
355
355
|
},
|
|
356
356
|
},
|
|
357
357
|
stackStatusHandler: {
|
|
358
358
|
ID: 0x0019, // 25
|
|
359
359
|
request: null,
|
|
360
360
|
response: {
|
|
361
|
-
status: types_1.EmberStatus
|
|
361
|
+
status: types_1.EmberStatus,
|
|
362
362
|
},
|
|
363
363
|
},
|
|
364
364
|
startScan: {
|
|
365
|
-
ID:
|
|
365
|
+
ID: 0x001a, // 26
|
|
366
366
|
request: {
|
|
367
367
|
scanType: types_1.EzspNetworkScanType,
|
|
368
368
|
channelMask: types_1.uint32_t,
|
|
369
|
-
duration: types_1.uint8_t
|
|
369
|
+
duration: types_1.uint8_t,
|
|
370
370
|
},
|
|
371
371
|
response: {
|
|
372
|
-
status: types_1.EmberStatus
|
|
372
|
+
status: types_1.EmberStatus,
|
|
373
373
|
},
|
|
374
374
|
},
|
|
375
375
|
energyScanResultHandler: {
|
|
@@ -377,68 +377,68 @@ exports.FRAMES = {
|
|
|
377
377
|
request: null,
|
|
378
378
|
response: {
|
|
379
379
|
channel: types_1.uint8_t,
|
|
380
|
-
maxRssiValue: types_1.int8s
|
|
380
|
+
maxRssiValue: types_1.int8s,
|
|
381
381
|
},
|
|
382
382
|
},
|
|
383
383
|
networkFoundHandler: {
|
|
384
|
-
ID:
|
|
384
|
+
ID: 0x001b, // 27
|
|
385
385
|
request: null,
|
|
386
386
|
response: {
|
|
387
387
|
networkFound: types_1.EmberZigbeeNetwork,
|
|
388
388
|
lastHopLqi: types_1.uint8_t,
|
|
389
|
-
lastHopRssi: types_1.int8s
|
|
389
|
+
lastHopRssi: types_1.int8s,
|
|
390
390
|
},
|
|
391
391
|
},
|
|
392
392
|
scanCompleteHandler: {
|
|
393
|
-
ID:
|
|
393
|
+
ID: 0x001c, // 28
|
|
394
394
|
request: null,
|
|
395
395
|
response: {
|
|
396
396
|
channel: types_1.uint8_t,
|
|
397
|
-
status: types_1.EmberStatus
|
|
397
|
+
status: types_1.EmberStatus,
|
|
398
398
|
},
|
|
399
399
|
},
|
|
400
400
|
unusedPanIdFoundHandler: {
|
|
401
|
-
ID:
|
|
401
|
+
ID: 0x00d2,
|
|
402
402
|
request: null,
|
|
403
403
|
response: {
|
|
404
404
|
panId: types_1.EmberPanId,
|
|
405
|
-
channel: types_1.uint8_t
|
|
405
|
+
channel: types_1.uint8_t,
|
|
406
406
|
},
|
|
407
407
|
},
|
|
408
408
|
findUnusedPanId: {
|
|
409
|
-
ID:
|
|
409
|
+
ID: 0x00d3,
|
|
410
410
|
request: {
|
|
411
411
|
channelMask: types_1.uint32_t,
|
|
412
|
-
duration: types_1.uint8_t
|
|
412
|
+
duration: types_1.uint8_t,
|
|
413
413
|
},
|
|
414
414
|
response: {
|
|
415
|
-
status: types_1.EmberStatus
|
|
415
|
+
status: types_1.EmberStatus,
|
|
416
416
|
},
|
|
417
417
|
},
|
|
418
418
|
stopScan: {
|
|
419
|
-
ID:
|
|
419
|
+
ID: 0x001d, // 29
|
|
420
420
|
request: null,
|
|
421
421
|
response: {
|
|
422
|
-
status: types_1.EmberStatus
|
|
422
|
+
status: types_1.EmberStatus,
|
|
423
423
|
},
|
|
424
424
|
},
|
|
425
425
|
formNetwork: {
|
|
426
|
-
ID:
|
|
426
|
+
ID: 0x001e, // 30
|
|
427
427
|
request: {
|
|
428
|
-
parameters: types_1.EmberNetworkParameters
|
|
428
|
+
parameters: types_1.EmberNetworkParameters,
|
|
429
429
|
},
|
|
430
430
|
response: {
|
|
431
|
-
status: types_1.EmberStatus
|
|
431
|
+
status: types_1.EmberStatus,
|
|
432
432
|
},
|
|
433
433
|
},
|
|
434
434
|
joinNetwork: {
|
|
435
|
-
ID:
|
|
435
|
+
ID: 0x001f, // 31
|
|
436
436
|
request: {
|
|
437
437
|
nodeType: types_1.EmberNodeType,
|
|
438
|
-
parameters: types_1.EmberNetworkParameters
|
|
438
|
+
parameters: types_1.EmberNetworkParameters,
|
|
439
439
|
},
|
|
440
440
|
response: {
|
|
441
|
-
status: types_1.EmberStatus
|
|
441
|
+
status: types_1.EmberStatus,
|
|
442
442
|
},
|
|
443
443
|
},
|
|
444
444
|
// joinNetworkDirectly: {
|
|
@@ -457,26 +457,26 @@ exports.FRAMES = {
|
|
|
457
457
|
ID: 0x0020, // 32
|
|
458
458
|
request: null,
|
|
459
459
|
response: {
|
|
460
|
-
status: types_1.EmberStatus
|
|
460
|
+
status: types_1.EmberStatus,
|
|
461
461
|
},
|
|
462
462
|
},
|
|
463
463
|
findAndRejoinNetwork: {
|
|
464
464
|
ID: 0x0021, // 33
|
|
465
465
|
request: {
|
|
466
466
|
haveCurrentNetworkKey: types_1.Bool,
|
|
467
|
-
channelMask: types_1.uint32_t
|
|
467
|
+
channelMask: types_1.uint32_t,
|
|
468
468
|
},
|
|
469
469
|
response: {
|
|
470
|
-
status: types_1.EmberStatus
|
|
470
|
+
status: types_1.EmberStatus,
|
|
471
471
|
},
|
|
472
472
|
},
|
|
473
473
|
permitJoining: {
|
|
474
474
|
ID: 0x0022, // 34
|
|
475
475
|
request: {
|
|
476
|
-
duration: types_1.uint8_t
|
|
476
|
+
duration: types_1.uint8_t,
|
|
477
477
|
},
|
|
478
478
|
response: {
|
|
479
|
-
status: types_1.EmberStatus
|
|
479
|
+
status: types_1.EmberStatus,
|
|
480
480
|
},
|
|
481
481
|
},
|
|
482
482
|
childJoinHandler: {
|
|
@@ -487,19 +487,19 @@ exports.FRAMES = {
|
|
|
487
487
|
joining: types_1.Bool,
|
|
488
488
|
childId: types_1.EmberNodeId,
|
|
489
489
|
childEui64: types_1.EmberEUI64,
|
|
490
|
-
childType: types_1.EmberNodeType
|
|
490
|
+
childType: types_1.EmberNodeType,
|
|
491
491
|
},
|
|
492
492
|
},
|
|
493
493
|
energyScanRequest: {
|
|
494
|
-
ID:
|
|
494
|
+
ID: 0x009c, // 156
|
|
495
495
|
request: {
|
|
496
496
|
target: types_1.EmberNodeId,
|
|
497
497
|
scanChannels: types_1.uint32_t,
|
|
498
498
|
scanDuration: types_1.uint8_t,
|
|
499
|
-
scanCount: types_1.uint16_t
|
|
499
|
+
scanCount: types_1.uint16_t,
|
|
500
500
|
},
|
|
501
501
|
response: {
|
|
502
|
-
status: types_1.EmberStatus
|
|
502
|
+
status: types_1.EmberStatus,
|
|
503
503
|
},
|
|
504
504
|
},
|
|
505
505
|
getNetworkParameters: {
|
|
@@ -508,18 +508,18 @@ exports.FRAMES = {
|
|
|
508
508
|
response: {
|
|
509
509
|
status: types_1.EmberStatus,
|
|
510
510
|
nodeType: types_1.EmberNodeType,
|
|
511
|
-
parameters: types_1.EmberNetworkParameters
|
|
511
|
+
parameters: types_1.EmberNetworkParameters,
|
|
512
512
|
},
|
|
513
513
|
},
|
|
514
514
|
getRadioParameters: {
|
|
515
|
-
ID:
|
|
515
|
+
ID: 0x00fd,
|
|
516
516
|
request: {
|
|
517
|
-
childCount: types_1.uint8_t
|
|
517
|
+
childCount: types_1.uint8_t,
|
|
518
518
|
},
|
|
519
519
|
response: {
|
|
520
520
|
status: types_1.EmberStatus,
|
|
521
521
|
nodeType: types_1.EmberNodeType,
|
|
522
|
-
parameters: types_1.EmberNetworkParameters
|
|
522
|
+
parameters: types_1.EmberNetworkParameters,
|
|
523
523
|
},
|
|
524
524
|
},
|
|
525
525
|
getParentChildParameters: {
|
|
@@ -528,64 +528,64 @@ exports.FRAMES = {
|
|
|
528
528
|
response: {
|
|
529
529
|
childCount: types_1.uint8_t,
|
|
530
530
|
parentEui64: types_1.EmberEUI64,
|
|
531
|
-
parentNodeId: types_1.EmberNodeId
|
|
531
|
+
parentNodeId: types_1.EmberNodeId,
|
|
532
532
|
},
|
|
533
533
|
},
|
|
534
534
|
getChildData: {
|
|
535
|
-
ID:
|
|
535
|
+
ID: 0x004a, // 74
|
|
536
536
|
request: {
|
|
537
|
-
index: types_1.uint8_t
|
|
537
|
+
index: types_1.uint8_t,
|
|
538
538
|
},
|
|
539
539
|
response: {
|
|
540
540
|
status: types_1.EmberStatus,
|
|
541
541
|
nodeId: types_1.EmberNodeId,
|
|
542
542
|
eui64: types_1.EmberEUI64,
|
|
543
|
-
nodeType: types_1.EmberNodeType
|
|
543
|
+
nodeType: types_1.EmberNodeType,
|
|
544
544
|
},
|
|
545
545
|
},
|
|
546
546
|
getNeighbor: {
|
|
547
547
|
ID: 0x0079, // 121
|
|
548
548
|
request: {
|
|
549
|
-
index: types_1.uint8_t
|
|
549
|
+
index: types_1.uint8_t,
|
|
550
550
|
},
|
|
551
551
|
response: {
|
|
552
552
|
status: types_1.EmberStatus,
|
|
553
|
-
value: types_1.EmberNeighborTableEntry
|
|
553
|
+
value: types_1.EmberNeighborTableEntry,
|
|
554
554
|
},
|
|
555
555
|
},
|
|
556
556
|
neighborCount: {
|
|
557
|
-
ID:
|
|
557
|
+
ID: 0x007a, // 122
|
|
558
558
|
request: null,
|
|
559
559
|
response: {
|
|
560
|
-
value: types_1.uint8_t
|
|
560
|
+
value: types_1.uint8_t,
|
|
561
561
|
},
|
|
562
562
|
},
|
|
563
563
|
getRouteTableEntry: {
|
|
564
|
-
ID:
|
|
564
|
+
ID: 0x007b, // 123
|
|
565
565
|
request: {
|
|
566
|
-
index: types_1.uint8_t
|
|
566
|
+
index: types_1.uint8_t,
|
|
567
567
|
},
|
|
568
568
|
response: {
|
|
569
569
|
status: types_1.EmberStatus,
|
|
570
|
-
value: types_1.EmberRouteTableEntry
|
|
570
|
+
value: types_1.EmberRouteTableEntry,
|
|
571
571
|
},
|
|
572
572
|
},
|
|
573
573
|
setRadioPower: {
|
|
574
574
|
ID: 0x0099, // 153
|
|
575
575
|
request: {
|
|
576
|
-
power: types_1.int8s
|
|
576
|
+
power: types_1.int8s,
|
|
577
577
|
},
|
|
578
578
|
response: {
|
|
579
|
-
status: types_1.EmberStatus
|
|
579
|
+
status: types_1.EmberStatus,
|
|
580
580
|
},
|
|
581
581
|
},
|
|
582
582
|
setRadioChannel: {
|
|
583
|
-
ID:
|
|
583
|
+
ID: 0x009a, // 154
|
|
584
584
|
request: {
|
|
585
|
-
channel: types_1.uint8_t
|
|
585
|
+
channel: types_1.uint8_t,
|
|
586
586
|
},
|
|
587
587
|
response: {
|
|
588
|
-
status: types_1.EmberStatus
|
|
588
|
+
status: types_1.EmberStatus,
|
|
589
589
|
},
|
|
590
590
|
},
|
|
591
591
|
setConcentrator: {
|
|
@@ -597,72 +597,72 @@ exports.FRAMES = {
|
|
|
597
597
|
maxTime: types_1.uint16_t,
|
|
598
598
|
routeErrorThreshold: types_1.uint8_t,
|
|
599
599
|
deliveryFailureThreshold: types_1.uint8_t,
|
|
600
|
-
maxHops: types_1.uint8_t
|
|
600
|
+
maxHops: types_1.uint8_t,
|
|
601
601
|
},
|
|
602
602
|
response: {
|
|
603
|
-
status: types_1.EmberStatus
|
|
603
|
+
status: types_1.EmberStatus,
|
|
604
604
|
},
|
|
605
605
|
},
|
|
606
606
|
// Binding Frames
|
|
607
607
|
clearBindingTable: {
|
|
608
|
-
ID:
|
|
608
|
+
ID: 0x002a, // 42
|
|
609
609
|
request: null,
|
|
610
610
|
response: {
|
|
611
|
-
status: types_1.EmberStatus
|
|
611
|
+
status: types_1.EmberStatus,
|
|
612
612
|
},
|
|
613
613
|
},
|
|
614
614
|
setBinding: {
|
|
615
|
-
ID:
|
|
615
|
+
ID: 0x002b, // 43
|
|
616
616
|
request: {
|
|
617
617
|
index: types_1.uint8_t,
|
|
618
|
-
value: types_1.EmberBindingTableEntry
|
|
618
|
+
value: types_1.EmberBindingTableEntry,
|
|
619
619
|
},
|
|
620
620
|
response: {
|
|
621
|
-
status: types_1.EmberStatus
|
|
621
|
+
status: types_1.EmberStatus,
|
|
622
622
|
},
|
|
623
623
|
},
|
|
624
624
|
getBinding: {
|
|
625
|
-
ID:
|
|
625
|
+
ID: 0x002c, // 44
|
|
626
626
|
request: {
|
|
627
|
-
index: types_1.uint8_t
|
|
627
|
+
index: types_1.uint8_t,
|
|
628
628
|
},
|
|
629
629
|
response: {
|
|
630
630
|
status: types_1.EmberStatus,
|
|
631
|
-
value: types_1.EmberBindingTableEntry
|
|
631
|
+
value: types_1.EmberBindingTableEntry,
|
|
632
632
|
},
|
|
633
633
|
},
|
|
634
634
|
deleteBinding: {
|
|
635
|
-
ID:
|
|
635
|
+
ID: 0x002d, // 45
|
|
636
636
|
request: {
|
|
637
|
-
index: types_1.uint8_t
|
|
637
|
+
index: types_1.uint8_t,
|
|
638
638
|
},
|
|
639
639
|
response: {
|
|
640
|
-
status: types_1.EmberStatus
|
|
640
|
+
status: types_1.EmberStatus,
|
|
641
641
|
},
|
|
642
642
|
},
|
|
643
643
|
bindingIsActive: {
|
|
644
|
-
ID:
|
|
644
|
+
ID: 0x002e, // 46
|
|
645
645
|
request: {
|
|
646
|
-
index: types_1.uint8_t
|
|
646
|
+
index: types_1.uint8_t,
|
|
647
647
|
},
|
|
648
648
|
response: {
|
|
649
|
-
active: types_1.Bool
|
|
649
|
+
active: types_1.Bool,
|
|
650
650
|
},
|
|
651
651
|
},
|
|
652
652
|
getBindingRemoteNodeId: {
|
|
653
|
-
ID:
|
|
653
|
+
ID: 0x002f, // 47
|
|
654
654
|
request: {
|
|
655
|
-
index: types_1.uint8_t
|
|
655
|
+
index: types_1.uint8_t,
|
|
656
656
|
},
|
|
657
657
|
response: {
|
|
658
|
-
nodeId: types_1.EmberNodeId
|
|
658
|
+
nodeId: types_1.EmberNodeId,
|
|
659
659
|
},
|
|
660
660
|
},
|
|
661
661
|
setBindingRemoteNodeId: {
|
|
662
662
|
ID: 0x0030, // 48
|
|
663
663
|
request: {
|
|
664
664
|
index: types_1.uint8_t,
|
|
665
|
-
nodeId: types_1.EmberNodeId
|
|
665
|
+
nodeId: types_1.EmberNodeId,
|
|
666
666
|
},
|
|
667
667
|
response: null,
|
|
668
668
|
},
|
|
@@ -672,7 +672,7 @@ exports.FRAMES = {
|
|
|
672
672
|
response: {
|
|
673
673
|
entry: types_1.EmberBindingTableEntry,
|
|
674
674
|
index: types_1.uint8_t,
|
|
675
|
-
policyDecision: types_1.EmberStatus
|
|
675
|
+
policyDecision: types_1.EmberStatus,
|
|
676
676
|
},
|
|
677
677
|
},
|
|
678
678
|
remoteDeleteBindingHandler: {
|
|
@@ -680,7 +680,7 @@ exports.FRAMES = {
|
|
|
680
680
|
request: null,
|
|
681
681
|
response: {
|
|
682
682
|
index: types_1.uint8_t,
|
|
683
|
-
policyDecision: types_1.EmberStatus
|
|
683
|
+
policyDecision: types_1.EmberStatus,
|
|
684
684
|
},
|
|
685
685
|
},
|
|
686
686
|
// Messaging Frames
|
|
@@ -688,7 +688,7 @@ exports.FRAMES = {
|
|
|
688
688
|
ID: 0x0033, // 51
|
|
689
689
|
request: null,
|
|
690
690
|
response: {
|
|
691
|
-
apsLength: types_1.uint8_t
|
|
691
|
+
apsLength: types_1.uint8_t,
|
|
692
692
|
},
|
|
693
693
|
},
|
|
694
694
|
sendUnicast: {
|
|
@@ -698,11 +698,11 @@ exports.FRAMES = {
|
|
|
698
698
|
indexOrDestination: types_1.EmberNodeId,
|
|
699
699
|
apsFrame: types_1.EmberApsFrame,
|
|
700
700
|
messageTag: types_1.uint8_t,
|
|
701
|
-
message: types_1.LVBytes
|
|
701
|
+
message: types_1.LVBytes,
|
|
702
702
|
},
|
|
703
703
|
response: {
|
|
704
704
|
status: types_1.EmberStatus,
|
|
705
|
-
sequence: types_1.uint8_t
|
|
705
|
+
sequence: types_1.uint8_t,
|
|
706
706
|
},
|
|
707
707
|
},
|
|
708
708
|
sendBroadcast: {
|
|
@@ -712,11 +712,11 @@ exports.FRAMES = {
|
|
|
712
712
|
apsFrame: types_1.EmberApsFrame,
|
|
713
713
|
radius: types_1.uint8_t,
|
|
714
714
|
messageTag: types_1.uint8_t,
|
|
715
|
-
message: types_1.LVBytes
|
|
715
|
+
message: types_1.LVBytes,
|
|
716
716
|
},
|
|
717
717
|
response: {
|
|
718
718
|
status: types_1.EmberStatus,
|
|
719
|
-
sequence: types_1.uint8_t
|
|
719
|
+
sequence: types_1.uint8_t,
|
|
720
720
|
},
|
|
721
721
|
},
|
|
722
722
|
proxyBroadcast: {
|
|
@@ -728,11 +728,11 @@ exports.FRAMES = {
|
|
|
728
728
|
apsFrame: types_1.EmberApsFrame,
|
|
729
729
|
radius: types_1.uint8_t,
|
|
730
730
|
messageTag: types_1.uint8_t,
|
|
731
|
-
message: types_1.LVBytes
|
|
731
|
+
message: types_1.LVBytes,
|
|
732
732
|
},
|
|
733
733
|
response: {
|
|
734
734
|
status: types_1.EmberStatus,
|
|
735
|
-
apsSequence: types_1.uint8_t
|
|
735
|
+
apsSequence: types_1.uint8_t,
|
|
736
736
|
},
|
|
737
737
|
},
|
|
738
738
|
sendMulticast: {
|
|
@@ -742,15 +742,15 @@ exports.FRAMES = {
|
|
|
742
742
|
hops: types_1.uint8_t,
|
|
743
743
|
nonmemberRadius: types_1.uint8_t,
|
|
744
744
|
messageTag: types_1.uint8_t,
|
|
745
|
-
message: types_1.LVBytes
|
|
745
|
+
message: types_1.LVBytes,
|
|
746
746
|
},
|
|
747
747
|
response: {
|
|
748
748
|
status: types_1.EmberStatus,
|
|
749
|
-
sequence: types_1.uint8_t
|
|
749
|
+
sequence: types_1.uint8_t,
|
|
750
750
|
},
|
|
751
751
|
},
|
|
752
752
|
sendMulticastWithAlias: {
|
|
753
|
-
ID:
|
|
753
|
+
ID: 0x003a,
|
|
754
754
|
request: {
|
|
755
755
|
apsFrame: types_1.EmberApsFrame,
|
|
756
756
|
hops: types_1.uint8_t,
|
|
@@ -758,11 +758,11 @@ exports.FRAMES = {
|
|
|
758
758
|
alias: types_1.uint16_t,
|
|
759
759
|
nwkSequence: types_1.uint8_t,
|
|
760
760
|
messageTag: types_1.uint8_t,
|
|
761
|
-
message: types_1.LVBytes
|
|
761
|
+
message: types_1.LVBytes,
|
|
762
762
|
},
|
|
763
763
|
response: {
|
|
764
764
|
status: types_1.EmberStatus,
|
|
765
|
-
sequence: types_1.uint8_t
|
|
765
|
+
sequence: types_1.uint8_t,
|
|
766
766
|
},
|
|
767
767
|
},
|
|
768
768
|
sendReply: {
|
|
@@ -770,14 +770,14 @@ exports.FRAMES = {
|
|
|
770
770
|
request: {
|
|
771
771
|
sender: types_1.EmberNodeId,
|
|
772
772
|
apsFrame: types_1.EmberApsFrame,
|
|
773
|
-
message: types_1.LVBytes
|
|
773
|
+
message: types_1.LVBytes,
|
|
774
774
|
},
|
|
775
775
|
response: {
|
|
776
|
-
status: types_1.EmberStatus
|
|
776
|
+
status: types_1.EmberStatus,
|
|
777
777
|
},
|
|
778
778
|
},
|
|
779
779
|
messageSentHandler: {
|
|
780
|
-
ID:
|
|
780
|
+
ID: 0x003f, // 63
|
|
781
781
|
request: null,
|
|
782
782
|
response: {
|
|
783
783
|
type: types_1.EmberOutgoingMessageType,
|
|
@@ -785,17 +785,17 @@ exports.FRAMES = {
|
|
|
785
785
|
apsFrame: types_1.EmberApsFrame,
|
|
786
786
|
messageTag: types_1.uint8_t,
|
|
787
787
|
status: types_1.EmberStatus,
|
|
788
|
-
message: types_1.LVBytes
|
|
788
|
+
message: types_1.LVBytes,
|
|
789
789
|
},
|
|
790
790
|
},
|
|
791
791
|
sendManyToOneRouteRequest: {
|
|
792
792
|
ID: 0x0041, // 65
|
|
793
793
|
request: {
|
|
794
794
|
concentratorType: types_1.uint16_t,
|
|
795
|
-
radius: types_1.uint8_t
|
|
795
|
+
radius: types_1.uint8_t,
|
|
796
796
|
},
|
|
797
797
|
response: {
|
|
798
|
-
status: types_1.EmberStatus
|
|
798
|
+
status: types_1.EmberStatus,
|
|
799
799
|
},
|
|
800
800
|
},
|
|
801
801
|
pollForData: {
|
|
@@ -803,31 +803,31 @@ exports.FRAMES = {
|
|
|
803
803
|
request: {
|
|
804
804
|
interval: types_1.uint16_t,
|
|
805
805
|
units: types_1.EmberEventUnits,
|
|
806
|
-
failureLimit: types_1.uint8_t
|
|
806
|
+
failureLimit: types_1.uint8_t,
|
|
807
807
|
},
|
|
808
808
|
response: {
|
|
809
|
-
status: types_1.EmberStatus
|
|
809
|
+
status: types_1.EmberStatus,
|
|
810
810
|
},
|
|
811
811
|
},
|
|
812
812
|
pollCompleteHandler: {
|
|
813
813
|
ID: 0x0043, // 67
|
|
814
814
|
request: null,
|
|
815
815
|
response: {
|
|
816
|
-
status: types_1.EmberStatus
|
|
816
|
+
status: types_1.EmberStatus,
|
|
817
817
|
},
|
|
818
818
|
},
|
|
819
819
|
pollHandler: {
|
|
820
820
|
ID: 0x0044, // 68
|
|
821
821
|
request: null,
|
|
822
822
|
response: {
|
|
823
|
-
childId: types_1.EmberNodeId
|
|
823
|
+
childId: types_1.EmberNodeId,
|
|
824
824
|
},
|
|
825
825
|
},
|
|
826
826
|
incomingSenderEui64Handler: {
|
|
827
827
|
ID: 0x0062, // 98
|
|
828
828
|
request: null,
|
|
829
829
|
response: {
|
|
830
|
-
senderEui64: types_1.EmberEUI64
|
|
830
|
+
senderEui64: types_1.EmberEUI64,
|
|
831
831
|
},
|
|
832
832
|
},
|
|
833
833
|
incomingMessageHandler: {
|
|
@@ -841,7 +841,7 @@ exports.FRAMES = {
|
|
|
841
841
|
sender: types_1.EmberNodeId,
|
|
842
842
|
bindingIndex: types_1.uint8_t,
|
|
843
843
|
addressIndex: types_1.uint8_t,
|
|
844
|
-
message: types_1.LVBytes
|
|
844
|
+
message: types_1.LVBytes,
|
|
845
845
|
},
|
|
846
846
|
},
|
|
847
847
|
incomingRouteRecordHandler: {
|
|
@@ -852,16 +852,16 @@ exports.FRAMES = {
|
|
|
852
852
|
longId: types_1.EmberEUI64,
|
|
853
853
|
lastHopLqi: types_1.uint8_t,
|
|
854
854
|
lastHopRssi: types_1.int8s,
|
|
855
|
-
relay: types_1.LVBytes
|
|
855
|
+
relay: types_1.LVBytes,
|
|
856
856
|
},
|
|
857
857
|
},
|
|
858
858
|
incomingManyToOneRouteRequestHandler: {
|
|
859
|
-
ID:
|
|
859
|
+
ID: 0x007d, // 125
|
|
860
860
|
request: null,
|
|
861
861
|
response: {
|
|
862
862
|
source: types_1.EmberNodeId,
|
|
863
863
|
longId: types_1.EmberEUI64,
|
|
864
|
-
cost: types_1.uint8_t
|
|
864
|
+
cost: types_1.uint8_t,
|
|
865
865
|
},
|
|
866
866
|
},
|
|
867
867
|
incomingRouteErrorHandler: {
|
|
@@ -869,7 +869,7 @@ exports.FRAMES = {
|
|
|
869
869
|
request: null,
|
|
870
870
|
response: {
|
|
871
871
|
status: types_1.EmberStatus,
|
|
872
|
-
target: types_1.EmberNodeId
|
|
872
|
+
target: types_1.EmberNodeId,
|
|
873
873
|
},
|
|
874
874
|
},
|
|
875
875
|
unicastCurrentNetworkKey: {
|
|
@@ -877,72 +877,72 @@ exports.FRAMES = {
|
|
|
877
877
|
request: {
|
|
878
878
|
targetShort: types_1.EmberNodeId,
|
|
879
879
|
targetLong: types_1.EmberEUI64,
|
|
880
|
-
parentShortId: types_1.EmberNodeId
|
|
880
|
+
parentShortId: types_1.EmberNodeId,
|
|
881
881
|
},
|
|
882
882
|
response: {
|
|
883
|
-
status: types_1.EmberStatus
|
|
883
|
+
status: types_1.EmberStatus,
|
|
884
884
|
},
|
|
885
885
|
},
|
|
886
886
|
addressTableEntryIsActive: {
|
|
887
|
-
ID:
|
|
887
|
+
ID: 0x005b, // 91
|
|
888
888
|
request: {
|
|
889
|
-
addressTableIndex: types_1.uint8_t
|
|
889
|
+
addressTableIndex: types_1.uint8_t,
|
|
890
890
|
},
|
|
891
891
|
response: {
|
|
892
|
-
active: types_1.Bool
|
|
892
|
+
active: types_1.Bool,
|
|
893
893
|
},
|
|
894
894
|
},
|
|
895
895
|
setAddressTableRemoteEui64: {
|
|
896
|
-
ID:
|
|
896
|
+
ID: 0x005c, // 92
|
|
897
897
|
request: {
|
|
898
898
|
addressTableIndex: types_1.uint8_t,
|
|
899
|
-
eui64: types_1.EmberEUI64
|
|
899
|
+
eui64: types_1.EmberEUI64,
|
|
900
900
|
},
|
|
901
901
|
response: {
|
|
902
|
-
status: types_1.EmberStatus
|
|
902
|
+
status: types_1.EmberStatus,
|
|
903
903
|
},
|
|
904
904
|
},
|
|
905
905
|
setAddressTableRemoteNodeId: {
|
|
906
|
-
ID:
|
|
906
|
+
ID: 0x005d, // 93
|
|
907
907
|
request: {
|
|
908
908
|
addressTableIndex: types_1.uint8_t,
|
|
909
|
-
id: types_1.EmberNodeId
|
|
909
|
+
id: types_1.EmberNodeId,
|
|
910
910
|
},
|
|
911
911
|
response: null,
|
|
912
912
|
},
|
|
913
913
|
getAddressTableRemoteEui64: {
|
|
914
|
-
ID:
|
|
914
|
+
ID: 0x005e, // 94
|
|
915
915
|
request: {
|
|
916
|
-
addressTableIndex: types_1.uint8_t
|
|
916
|
+
addressTableIndex: types_1.uint8_t,
|
|
917
917
|
},
|
|
918
918
|
response: {
|
|
919
|
-
eui64: types_1.EmberEUI64
|
|
919
|
+
eui64: types_1.EmberEUI64,
|
|
920
920
|
},
|
|
921
921
|
},
|
|
922
922
|
getAddressTableRemoteNodeId: {
|
|
923
|
-
ID:
|
|
923
|
+
ID: 0x005f, // 95
|
|
924
924
|
request: {
|
|
925
|
-
addressTableIndex: types_1.uint8_t
|
|
925
|
+
addressTableIndex: types_1.uint8_t,
|
|
926
926
|
},
|
|
927
927
|
response: {
|
|
928
|
-
nodeId: types_1.EmberNodeId
|
|
928
|
+
nodeId: types_1.EmberNodeId,
|
|
929
929
|
},
|
|
930
930
|
},
|
|
931
931
|
setExtendedTimeout: {
|
|
932
|
-
ID:
|
|
932
|
+
ID: 0x007e, // 126
|
|
933
933
|
request: {
|
|
934
934
|
remoteEui64: types_1.EmberEUI64,
|
|
935
|
-
extendedTimeout: types_1.Bool
|
|
935
|
+
extendedTimeout: types_1.Bool,
|
|
936
936
|
},
|
|
937
937
|
response: null,
|
|
938
938
|
},
|
|
939
939
|
getExtendedTimeout: {
|
|
940
|
-
ID:
|
|
940
|
+
ID: 0x007f, // 127,
|
|
941
941
|
request: {
|
|
942
|
-
remoteEui64: types_1.EmberEUI64
|
|
942
|
+
remoteEui64: types_1.EmberEUI64,
|
|
943
943
|
},
|
|
944
944
|
response: {
|
|
945
|
-
extendedTimeout: types_1.Bool
|
|
945
|
+
extendedTimeout: types_1.Bool,
|
|
946
946
|
},
|
|
947
947
|
},
|
|
948
948
|
replaceAddressTableEntry: {
|
|
@@ -951,76 +951,76 @@ exports.FRAMES = {
|
|
|
951
951
|
addressTableIndex: types_1.uint8_t,
|
|
952
952
|
newEui64: types_1.EmberEUI64,
|
|
953
953
|
newId: types_1.EmberNodeId,
|
|
954
|
-
newExtendedTimeout: types_1.Bool
|
|
954
|
+
newExtendedTimeout: types_1.Bool,
|
|
955
955
|
},
|
|
956
956
|
response: {
|
|
957
957
|
status: types_1.EmberStatus,
|
|
958
958
|
oldEui64: types_1.EmberEUI64,
|
|
959
959
|
oldId: types_1.EmberNodeId,
|
|
960
|
-
oldExtendedTimeout: types_1.Bool
|
|
960
|
+
oldExtendedTimeout: types_1.Bool,
|
|
961
961
|
},
|
|
962
962
|
},
|
|
963
963
|
lookupNodeIdByEui64: {
|
|
964
964
|
ID: 0x0060, // 96
|
|
965
965
|
request: {
|
|
966
|
-
eui64: types_1.EmberEUI64
|
|
966
|
+
eui64: types_1.EmberEUI64,
|
|
967
967
|
},
|
|
968
968
|
response: {
|
|
969
|
-
nodeId: types_1.EmberNodeId
|
|
969
|
+
nodeId: types_1.EmberNodeId,
|
|
970
970
|
},
|
|
971
971
|
},
|
|
972
972
|
lookupEui64ByNodeId: {
|
|
973
973
|
ID: 0x0061, // 97
|
|
974
974
|
request: {
|
|
975
|
-
nodeId: types_1.EmberNodeId
|
|
975
|
+
nodeId: types_1.EmberNodeId,
|
|
976
976
|
},
|
|
977
977
|
response: {
|
|
978
978
|
status: types_1.EmberStatus,
|
|
979
|
-
eui64: types_1.EmberEUI64
|
|
979
|
+
eui64: types_1.EmberEUI64,
|
|
980
980
|
},
|
|
981
981
|
},
|
|
982
982
|
getMulticastTableEntry: {
|
|
983
983
|
ID: 0x0063, // 99
|
|
984
984
|
request: {
|
|
985
|
-
index: types_1.uint8_t
|
|
985
|
+
index: types_1.uint8_t,
|
|
986
986
|
},
|
|
987
987
|
response: {
|
|
988
|
-
value: types_1.EmberMulticastTableEntry
|
|
988
|
+
value: types_1.EmberMulticastTableEntry,
|
|
989
989
|
},
|
|
990
990
|
},
|
|
991
991
|
setMulticastTableEntry: {
|
|
992
992
|
ID: 0x0064, // 100
|
|
993
993
|
request: {
|
|
994
994
|
index: types_1.uint8_t,
|
|
995
|
-
value: types_1.EmberMulticastTableEntry
|
|
995
|
+
value: types_1.EmberMulticastTableEntry,
|
|
996
996
|
},
|
|
997
997
|
response: {
|
|
998
|
-
status: types_1.EmberStatus
|
|
998
|
+
status: types_1.EmberStatus,
|
|
999
999
|
},
|
|
1000
1000
|
},
|
|
1001
1001
|
idConflictHandler: {
|
|
1002
|
-
ID:
|
|
1002
|
+
ID: 0x007c, // 124
|
|
1003
1003
|
request: null,
|
|
1004
1004
|
response: {
|
|
1005
|
-
id: types_1.EmberNodeId
|
|
1005
|
+
id: types_1.EmberNodeId,
|
|
1006
1006
|
},
|
|
1007
1007
|
},
|
|
1008
1008
|
writeNodeData: {
|
|
1009
|
-
ID:
|
|
1009
|
+
ID: 0x00fe,
|
|
1010
1010
|
request: {
|
|
1011
|
-
erase: types_1.Bool
|
|
1011
|
+
erase: types_1.Bool,
|
|
1012
1012
|
},
|
|
1013
1013
|
response: {
|
|
1014
|
-
status: types_1.EmberStatus
|
|
1014
|
+
status: types_1.EmberStatus,
|
|
1015
1015
|
},
|
|
1016
1016
|
},
|
|
1017
1017
|
sendRawMessage: {
|
|
1018
1018
|
ID: 0x0096, // 150
|
|
1019
1019
|
request: {
|
|
1020
|
-
message: types_1.LVBytes
|
|
1020
|
+
message: types_1.LVBytes,
|
|
1021
1021
|
},
|
|
1022
1022
|
response: {
|
|
1023
|
-
status: types_1.EmberStatus
|
|
1023
|
+
status: types_1.EmberStatus,
|
|
1024
1024
|
},
|
|
1025
1025
|
},
|
|
1026
1026
|
sendRawMessageExtended: {
|
|
@@ -1028,10 +1028,10 @@ exports.FRAMES = {
|
|
|
1028
1028
|
request: {
|
|
1029
1029
|
message: types_1.LVBytes,
|
|
1030
1030
|
priority: types_1.uint8_t,
|
|
1031
|
-
useCca: types_1.Bool
|
|
1031
|
+
useCca: types_1.Bool,
|
|
1032
1032
|
},
|
|
1033
1033
|
response: {
|
|
1034
|
-
status: types_1.EmberStatus
|
|
1034
|
+
status: types_1.EmberStatus,
|
|
1035
1035
|
},
|
|
1036
1036
|
},
|
|
1037
1037
|
macPassthroughMessageHandler: {
|
|
@@ -1041,7 +1041,7 @@ exports.FRAMES = {
|
|
|
1041
1041
|
messageType: types_1.EmberMacPassthroughType,
|
|
1042
1042
|
lastHopLqi: types_1.uint8_t,
|
|
1043
1043
|
lastHopRssi: types_1.int8s,
|
|
1044
|
-
message: types_1.LVBytes
|
|
1044
|
+
message: types_1.LVBytes,
|
|
1045
1045
|
},
|
|
1046
1046
|
},
|
|
1047
1047
|
macFilterMatchMessageHandler: {
|
|
@@ -1052,24 +1052,24 @@ exports.FRAMES = {
|
|
|
1052
1052
|
legacyPassthroughType: types_1.EmberMacPassthroughType,
|
|
1053
1053
|
lastHopLqi: types_1.uint8_t,
|
|
1054
1054
|
lastHopRssi: types_1.int8s,
|
|
1055
|
-
message: types_1.LVBytes
|
|
1055
|
+
message: types_1.LVBytes,
|
|
1056
1056
|
},
|
|
1057
1057
|
},
|
|
1058
1058
|
rawTransmitCompleteHandler: {
|
|
1059
1059
|
ID: 0x0098, // 152
|
|
1060
1060
|
request: null,
|
|
1061
1061
|
response: {
|
|
1062
|
-
status: types_1.EmberStatus
|
|
1062
|
+
status: types_1.EmberStatus,
|
|
1063
1063
|
},
|
|
1064
1064
|
},
|
|
1065
1065
|
// Security Frames
|
|
1066
1066
|
setInitialSecurityState: {
|
|
1067
1067
|
ID: 0x0068, // 104
|
|
1068
1068
|
request: {
|
|
1069
|
-
state: types_1.EmberInitialSecurityState
|
|
1069
|
+
state: types_1.EmberInitialSecurityState,
|
|
1070
1070
|
},
|
|
1071
1071
|
response: {
|
|
1072
|
-
success: types_1.EmberStatus
|
|
1072
|
+
success: types_1.EmberStatus,
|
|
1073
1073
|
},
|
|
1074
1074
|
},
|
|
1075
1075
|
getCurrentSecurityState: {
|
|
@@ -1077,23 +1077,23 @@ exports.FRAMES = {
|
|
|
1077
1077
|
request: null,
|
|
1078
1078
|
response: {
|
|
1079
1079
|
status: types_1.EmberStatus,
|
|
1080
|
-
state: types_1.EmberCurrentSecurityState
|
|
1080
|
+
state: types_1.EmberCurrentSecurityState,
|
|
1081
1081
|
},
|
|
1082
1082
|
},
|
|
1083
1083
|
getKey: {
|
|
1084
1084
|
ID: 0x006a, // 106
|
|
1085
1085
|
request: {
|
|
1086
|
-
keyType: types_1.EmberKeyType
|
|
1086
|
+
keyType: types_1.EmberKeyType,
|
|
1087
1087
|
},
|
|
1088
1088
|
response: {
|
|
1089
1089
|
status: types_1.EmberStatus,
|
|
1090
|
-
keyStruct: types_1.EmberKeyStruct
|
|
1090
|
+
keyStruct: types_1.EmberKeyStruct,
|
|
1091
1091
|
},
|
|
1092
1092
|
},
|
|
1093
1093
|
exportKey: {
|
|
1094
1094
|
ID: 0x0114,
|
|
1095
1095
|
request: {
|
|
1096
|
-
context: types_1.EmberSecurityManagerContext
|
|
1096
|
+
context: types_1.EmberSecurityManagerContext,
|
|
1097
1097
|
},
|
|
1098
1098
|
response: {
|
|
1099
1099
|
keyData: types_1.EmberKeyData,
|
|
@@ -1112,17 +1112,17 @@ exports.FRAMES = {
|
|
|
1112
1112
|
ID: 0x006e, // 110
|
|
1113
1113
|
request: null,
|
|
1114
1114
|
response: {
|
|
1115
|
-
sequenceNumber: types_1.uint8_t
|
|
1115
|
+
sequenceNumber: types_1.uint8_t,
|
|
1116
1116
|
},
|
|
1117
1117
|
},
|
|
1118
1118
|
getKeyTableEntry: {
|
|
1119
1119
|
ID: 0x0071, // 113
|
|
1120
1120
|
request: {
|
|
1121
|
-
index: types_1.uint8_t
|
|
1121
|
+
index: types_1.uint8_t,
|
|
1122
1122
|
},
|
|
1123
1123
|
response: {
|
|
1124
1124
|
status: types_1.EmberStatus,
|
|
1125
|
-
keyStruct: types_1.EmberKeyStruct
|
|
1125
|
+
keyStruct: types_1.EmberKeyStruct,
|
|
1126
1126
|
},
|
|
1127
1127
|
},
|
|
1128
1128
|
setKeyTableEntry: {
|
|
@@ -1131,20 +1131,20 @@ exports.FRAMES = {
|
|
|
1131
1131
|
index: types_1.uint8_t,
|
|
1132
1132
|
address: types_1.EmberEUI64,
|
|
1133
1133
|
linkKey: types_1.Bool,
|
|
1134
|
-
keyData: types_1.EmberKeyData
|
|
1134
|
+
keyData: types_1.EmberKeyData,
|
|
1135
1135
|
},
|
|
1136
1136
|
response: {
|
|
1137
|
-
status: types_1.EmberStatus
|
|
1137
|
+
status: types_1.EmberStatus,
|
|
1138
1138
|
},
|
|
1139
1139
|
},
|
|
1140
1140
|
findKeyTableEntry: {
|
|
1141
1141
|
ID: 0x0075, // 117
|
|
1142
1142
|
request: {
|
|
1143
1143
|
address: types_1.EmberEUI64,
|
|
1144
|
-
linkKey: types_1.Bool
|
|
1144
|
+
linkKey: types_1.Bool,
|
|
1145
1145
|
},
|
|
1146
1146
|
response: {
|
|
1147
|
-
index: types_1.uint8_t
|
|
1147
|
+
index: types_1.uint8_t,
|
|
1148
1148
|
},
|
|
1149
1149
|
},
|
|
1150
1150
|
addOrUpdateKeyTableEntry: {
|
|
@@ -1152,72 +1152,72 @@ exports.FRAMES = {
|
|
|
1152
1152
|
request: {
|
|
1153
1153
|
address: types_1.EmberEUI64,
|
|
1154
1154
|
linkKey: types_1.Bool,
|
|
1155
|
-
keyData: types_1.EmberKeyData
|
|
1155
|
+
keyData: types_1.EmberKeyData,
|
|
1156
1156
|
},
|
|
1157
1157
|
response: {
|
|
1158
|
-
status: types_1.EmberStatus
|
|
1158
|
+
status: types_1.EmberStatus,
|
|
1159
1159
|
},
|
|
1160
1160
|
},
|
|
1161
1161
|
sendTrustCenterLinkKey: {
|
|
1162
1162
|
ID: 0x0067,
|
|
1163
1163
|
request: {
|
|
1164
1164
|
destinationNodeId: types_1.EmberNodeId,
|
|
1165
|
-
destinationEui64: types_1.EmberEUI64
|
|
1165
|
+
destinationEui64: types_1.EmberEUI64,
|
|
1166
1166
|
},
|
|
1167
1167
|
response: {
|
|
1168
|
-
status: types_1.EmberStatus
|
|
1168
|
+
status: types_1.EmberStatus,
|
|
1169
1169
|
},
|
|
1170
1170
|
},
|
|
1171
1171
|
eraseKeyTableEntry: {
|
|
1172
1172
|
ID: 0x0076, // 118
|
|
1173
1173
|
request: {
|
|
1174
|
-
index: types_1.uint8_t
|
|
1174
|
+
index: types_1.uint8_t,
|
|
1175
1175
|
},
|
|
1176
1176
|
response: {
|
|
1177
|
-
status: types_1.EmberStatus
|
|
1177
|
+
status: types_1.EmberStatus,
|
|
1178
1178
|
},
|
|
1179
1179
|
},
|
|
1180
1180
|
clearKeyTable: {
|
|
1181
|
-
ID:
|
|
1181
|
+
ID: 0x00b1, // 177
|
|
1182
1182
|
request: null,
|
|
1183
1183
|
response: {
|
|
1184
|
-
status: types_1.EmberStatus
|
|
1184
|
+
status: types_1.EmberStatus,
|
|
1185
1185
|
},
|
|
1186
1186
|
},
|
|
1187
1187
|
requestLinkKey: {
|
|
1188
1188
|
ID: 0x0014, // 20
|
|
1189
1189
|
request: {
|
|
1190
|
-
partner: types_1.EmberEUI64
|
|
1190
|
+
partner: types_1.EmberEUI64,
|
|
1191
1191
|
},
|
|
1192
1192
|
response: {
|
|
1193
|
-
status: types_1.EmberStatus
|
|
1193
|
+
status: types_1.EmberStatus,
|
|
1194
1194
|
},
|
|
1195
1195
|
},
|
|
1196
1196
|
updateTcLinkKey: {
|
|
1197
|
-
ID:
|
|
1197
|
+
ID: 0x006c,
|
|
1198
1198
|
request: {
|
|
1199
|
-
maxAttempts: types_1.uint8_t
|
|
1199
|
+
maxAttempts: types_1.uint8_t,
|
|
1200
1200
|
},
|
|
1201
1201
|
response: {
|
|
1202
|
-
status: types_1.EmberStatus
|
|
1202
|
+
status: types_1.EmberStatus,
|
|
1203
1203
|
},
|
|
1204
1204
|
},
|
|
1205
1205
|
zigbeeKeyEstablishmentHandler: {
|
|
1206
|
-
ID:
|
|
1206
|
+
ID: 0x009b, // 155
|
|
1207
1207
|
request: null,
|
|
1208
1208
|
response: {
|
|
1209
1209
|
partner: types_1.EmberEUI64,
|
|
1210
|
-
status: types_1.EmberKeyStatus
|
|
1210
|
+
status: types_1.EmberKeyStatus,
|
|
1211
1211
|
},
|
|
1212
1212
|
},
|
|
1213
1213
|
addTransientLinkKey: {
|
|
1214
|
-
ID:
|
|
1214
|
+
ID: 0x00af, // 175
|
|
1215
1215
|
request: {
|
|
1216
1216
|
partner: types_1.EmberEUI64,
|
|
1217
|
-
transientKey: types_1.EmberKeyData
|
|
1217
|
+
transientKey: types_1.EmberKeyData,
|
|
1218
1218
|
},
|
|
1219
1219
|
response: {
|
|
1220
|
-
status: types_1.EmberStatus
|
|
1220
|
+
status: types_1.EmberStatus,
|
|
1221
1221
|
},
|
|
1222
1222
|
},
|
|
1223
1223
|
importTransientKey: {
|
|
@@ -1225,14 +1225,14 @@ exports.FRAMES = {
|
|
|
1225
1225
|
request: {
|
|
1226
1226
|
partner: types_1.EmberEUI64,
|
|
1227
1227
|
transientKey: types_1.EmberKeyData,
|
|
1228
|
-
flags: types_1.uint8_t
|
|
1228
|
+
flags: types_1.uint8_t,
|
|
1229
1229
|
},
|
|
1230
1230
|
response: {
|
|
1231
|
-
status: types_1.EmberStatus
|
|
1231
|
+
status: types_1.EmberStatus,
|
|
1232
1232
|
},
|
|
1233
1233
|
},
|
|
1234
1234
|
clearTransientLinkKeys: {
|
|
1235
|
-
ID:
|
|
1235
|
+
ID: 0x006b, // 107
|
|
1236
1236
|
request: null,
|
|
1237
1237
|
response: null,
|
|
1238
1238
|
},
|
|
@@ -1248,39 +1248,39 @@ exports.FRAMES = {
|
|
|
1248
1248
|
// },
|
|
1249
1249
|
// Secure EZSP Frames
|
|
1250
1250
|
setSecurityKey: {
|
|
1251
|
-
ID:
|
|
1251
|
+
ID: 0x00ca, // 202
|
|
1252
1252
|
request: {
|
|
1253
1253
|
key: types_1.EmberKeyData,
|
|
1254
|
-
securityType: types_1.SecureEzspSecurityType
|
|
1254
|
+
securityType: types_1.SecureEzspSecurityType,
|
|
1255
1255
|
},
|
|
1256
1256
|
response: {
|
|
1257
|
-
status: types_1.EzspStatus
|
|
1257
|
+
status: types_1.EzspStatus,
|
|
1258
1258
|
},
|
|
1259
1259
|
},
|
|
1260
1260
|
setSecurityParameters: {
|
|
1261
|
-
ID:
|
|
1261
|
+
ID: 0x00cb, // 203
|
|
1262
1262
|
request: {
|
|
1263
1263
|
securityLevel: types_1.SecureEzspSecurityLevel,
|
|
1264
|
-
hostRandomNumber: types_1.SecureEzspRandomNumber
|
|
1264
|
+
hostRandomNumber: types_1.SecureEzspRandomNumber,
|
|
1265
1265
|
},
|
|
1266
1266
|
response: {
|
|
1267
1267
|
status: types_1.EzspStatus,
|
|
1268
|
-
returnNcpRandomNumber: types_1.SecureEzspRandomNumber
|
|
1268
|
+
returnNcpRandomNumber: types_1.SecureEzspRandomNumber,
|
|
1269
1269
|
},
|
|
1270
1270
|
},
|
|
1271
1271
|
resetToFactoryDefaults: {
|
|
1272
|
-
ID:
|
|
1272
|
+
ID: 0x00cc, // 204
|
|
1273
1273
|
request: null,
|
|
1274
1274
|
response: {
|
|
1275
|
-
status: types_1.EzspStatus
|
|
1275
|
+
status: types_1.EzspStatus,
|
|
1276
1276
|
},
|
|
1277
1277
|
},
|
|
1278
1278
|
getSecurityKeyStatus: {
|
|
1279
|
-
ID:
|
|
1279
|
+
ID: 0x00cd, // 205
|
|
1280
1280
|
request: null,
|
|
1281
1281
|
response: {
|
|
1282
1282
|
status: types_1.EzspStatus,
|
|
1283
|
-
returnSecurityType: types_1.SecureEzspSecurityType
|
|
1283
|
+
returnSecurityType: types_1.SecureEzspSecurityType,
|
|
1284
1284
|
},
|
|
1285
1285
|
},
|
|
1286
1286
|
// Trust Center Frames
|
|
@@ -1292,228 +1292,228 @@ exports.FRAMES = {
|
|
|
1292
1292
|
newNodeEui64: types_1.EmberEUI64,
|
|
1293
1293
|
status: types_1.EmberDeviceUpdate,
|
|
1294
1294
|
policyDecision: types_1.EmberJoinDecision,
|
|
1295
|
-
parentOfNewNodeId: types_1.EmberNodeId
|
|
1295
|
+
parentOfNewNodeId: types_1.EmberNodeId,
|
|
1296
1296
|
},
|
|
1297
1297
|
},
|
|
1298
1298
|
broadcastNextNetworkKey: {
|
|
1299
1299
|
ID: 0x0073, // 115
|
|
1300
1300
|
request: {
|
|
1301
|
-
key: types_1.EmberKeyData
|
|
1301
|
+
key: types_1.EmberKeyData,
|
|
1302
1302
|
},
|
|
1303
1303
|
response: {
|
|
1304
|
-
status: types_1.EmberStatus
|
|
1304
|
+
status: types_1.EmberStatus,
|
|
1305
1305
|
},
|
|
1306
1306
|
},
|
|
1307
1307
|
broadcastNetworkKeySwitch: {
|
|
1308
1308
|
ID: 0x0074, // 116
|
|
1309
1309
|
request: null,
|
|
1310
1310
|
response: {
|
|
1311
|
-
status: types_1.EmberStatus
|
|
1311
|
+
status: types_1.EmberStatus,
|
|
1312
1312
|
},
|
|
1313
1313
|
},
|
|
1314
1314
|
becomeTrustCenter: {
|
|
1315
1315
|
ID: 0x0077, // 119
|
|
1316
1316
|
request: {
|
|
1317
|
-
newNetworkKey: types_1.EmberKeyData
|
|
1317
|
+
newNetworkKey: types_1.EmberKeyData,
|
|
1318
1318
|
},
|
|
1319
1319
|
response: {
|
|
1320
|
-
status: types_1.EmberStatus
|
|
1320
|
+
status: types_1.EmberStatus,
|
|
1321
1321
|
},
|
|
1322
1322
|
},
|
|
1323
1323
|
aesMmoHash: {
|
|
1324
|
-
ID:
|
|
1324
|
+
ID: 0x006f, // 111
|
|
1325
1325
|
request: {
|
|
1326
1326
|
context: types_1.EmberAesMmoHashContext,
|
|
1327
1327
|
finalize: types_1.Bool,
|
|
1328
|
-
data: types_1.LVBytes
|
|
1328
|
+
data: types_1.LVBytes,
|
|
1329
1329
|
},
|
|
1330
1330
|
response: {
|
|
1331
1331
|
status: types_1.EmberStatus,
|
|
1332
|
-
returnContext: types_1.EmberAesMmoHashContext
|
|
1332
|
+
returnContext: types_1.EmberAesMmoHashContext,
|
|
1333
1333
|
},
|
|
1334
1334
|
},
|
|
1335
1335
|
removeDevice: {
|
|
1336
|
-
ID:
|
|
1336
|
+
ID: 0x00a8, // 168
|
|
1337
1337
|
request: {
|
|
1338
1338
|
destShort: types_1.EmberNodeId,
|
|
1339
1339
|
destLong: types_1.EmberEUI64,
|
|
1340
|
-
targetLong: types_1.EmberEUI64
|
|
1340
|
+
targetLong: types_1.EmberEUI64,
|
|
1341
1341
|
},
|
|
1342
1342
|
response: {
|
|
1343
|
-
status: types_1.EmberStatus
|
|
1343
|
+
status: types_1.EmberStatus,
|
|
1344
1344
|
},
|
|
1345
1345
|
},
|
|
1346
1346
|
unicastNwkKeyUpdate: {
|
|
1347
|
-
ID:
|
|
1347
|
+
ID: 0x00a9, // 169
|
|
1348
1348
|
request: {
|
|
1349
1349
|
destShort: types_1.EmberNodeId,
|
|
1350
1350
|
destLong: types_1.EmberEUI64,
|
|
1351
|
-
key: types_1.EmberKeyData
|
|
1351
|
+
key: types_1.EmberKeyData,
|
|
1352
1352
|
},
|
|
1353
1353
|
response: {
|
|
1354
|
-
status: types_1.EmberStatus
|
|
1354
|
+
status: types_1.EmberStatus,
|
|
1355
1355
|
},
|
|
1356
1356
|
},
|
|
1357
1357
|
// Certificate Based Key Exchange (CBKE) Frames
|
|
1358
1358
|
generateCbkeKeys: {
|
|
1359
|
-
ID:
|
|
1359
|
+
ID: 0x00a4, // 164
|
|
1360
1360
|
request: null,
|
|
1361
1361
|
response: {
|
|
1362
|
-
status: types_1.EmberStatus
|
|
1362
|
+
status: types_1.EmberStatus,
|
|
1363
1363
|
},
|
|
1364
1364
|
},
|
|
1365
1365
|
generateCbkeKeysHandler: {
|
|
1366
|
-
ID:
|
|
1366
|
+
ID: 0x009e, // 158
|
|
1367
1367
|
request: null,
|
|
1368
1368
|
response: {
|
|
1369
1369
|
status: types_1.EmberStatus,
|
|
1370
|
-
ephemeralPublicKey: types_1.EmberPublicKeyData
|
|
1370
|
+
ephemeralPublicKey: types_1.EmberPublicKeyData,
|
|
1371
1371
|
},
|
|
1372
1372
|
},
|
|
1373
1373
|
calculateSmacs: {
|
|
1374
|
-
ID:
|
|
1374
|
+
ID: 0x009f, // 159
|
|
1375
1375
|
request: {
|
|
1376
1376
|
amInitiator: types_1.Bool,
|
|
1377
1377
|
partnerCertificate: types_1.EmberCertificateData,
|
|
1378
|
-
partnerEphemeralPublicKey: types_1.EmberPublicKeyData
|
|
1378
|
+
partnerEphemeralPublicKey: types_1.EmberPublicKeyData,
|
|
1379
1379
|
},
|
|
1380
1380
|
response: {
|
|
1381
|
-
status: types_1.EmberStatus
|
|
1381
|
+
status: types_1.EmberStatus,
|
|
1382
1382
|
},
|
|
1383
1383
|
},
|
|
1384
1384
|
calculateSmacsHandler: {
|
|
1385
|
-
ID:
|
|
1385
|
+
ID: 0x00a0, // 160
|
|
1386
1386
|
request: null,
|
|
1387
1387
|
response: {
|
|
1388
1388
|
status: types_1.EmberStatus,
|
|
1389
1389
|
initiatorSmac: types_1.EmberSmacData,
|
|
1390
|
-
responderSmac: types_1.EmberSmacData
|
|
1390
|
+
responderSmac: types_1.EmberSmacData,
|
|
1391
1391
|
},
|
|
1392
1392
|
},
|
|
1393
1393
|
generateCbkeKeys283k1: {
|
|
1394
|
-
ID:
|
|
1394
|
+
ID: 0x00e8, // 232
|
|
1395
1395
|
request: null,
|
|
1396
1396
|
response: {
|
|
1397
|
-
status: types_1.EmberStatus
|
|
1397
|
+
status: types_1.EmberStatus,
|
|
1398
1398
|
},
|
|
1399
1399
|
},
|
|
1400
1400
|
generateCbkeKeysHandler283k1: {
|
|
1401
|
-
ID:
|
|
1401
|
+
ID: 0x00e9, // 233
|
|
1402
1402
|
request: null,
|
|
1403
1403
|
response: {
|
|
1404
1404
|
status: types_1.EmberStatus,
|
|
1405
|
-
ephemeralPublicKey: types_1.EmberPublicKey283k1Data
|
|
1405
|
+
ephemeralPublicKey: types_1.EmberPublicKey283k1Data,
|
|
1406
1406
|
},
|
|
1407
1407
|
},
|
|
1408
1408
|
calculateSmacs283k1: {
|
|
1409
|
-
ID:
|
|
1409
|
+
ID: 0x00ea, // 234
|
|
1410
1410
|
request: {
|
|
1411
1411
|
amInitiator: types_1.Bool,
|
|
1412
1412
|
partnerCertificate: types_1.EmberCertificate283k1Data,
|
|
1413
|
-
partnerEphemeralPublicKey: types_1.EmberPublicKey283k1Data
|
|
1413
|
+
partnerEphemeralPublicKey: types_1.EmberPublicKey283k1Data,
|
|
1414
1414
|
},
|
|
1415
1415
|
response: {
|
|
1416
|
-
status: types_1.EmberStatus
|
|
1416
|
+
status: types_1.EmberStatus,
|
|
1417
1417
|
},
|
|
1418
1418
|
},
|
|
1419
1419
|
calculateSmacsHandler283k1: {
|
|
1420
|
-
ID:
|
|
1420
|
+
ID: 0x00eb, // 235
|
|
1421
1421
|
request: null,
|
|
1422
1422
|
response: {
|
|
1423
1423
|
status: types_1.EmberStatus,
|
|
1424
1424
|
initiatorSmac: types_1.EmberSmacData,
|
|
1425
|
-
responderSmac: types_1.EmberSmacData
|
|
1425
|
+
responderSmac: types_1.EmberSmacData,
|
|
1426
1426
|
},
|
|
1427
1427
|
},
|
|
1428
1428
|
clearTemporaryDataMaybeStoreLinkKey: {
|
|
1429
|
-
ID:
|
|
1429
|
+
ID: 0x00a1, // 161
|
|
1430
1430
|
request: {
|
|
1431
|
-
storeLinkKey: types_1.Bool
|
|
1431
|
+
storeLinkKey: types_1.Bool,
|
|
1432
1432
|
},
|
|
1433
1433
|
response: {
|
|
1434
|
-
status: types_1.EmberStatus
|
|
1434
|
+
status: types_1.EmberStatus,
|
|
1435
1435
|
},
|
|
1436
1436
|
},
|
|
1437
1437
|
clearTemporaryDataMaybeStoreLinkKey283k1: {
|
|
1438
|
-
ID:
|
|
1438
|
+
ID: 0x00ee, // 238
|
|
1439
1439
|
request: {
|
|
1440
|
-
storeLinkKey: types_1.Bool
|
|
1440
|
+
storeLinkKey: types_1.Bool,
|
|
1441
1441
|
},
|
|
1442
1442
|
response: {
|
|
1443
|
-
status: types_1.EmberStatus
|
|
1443
|
+
status: types_1.EmberStatus,
|
|
1444
1444
|
},
|
|
1445
1445
|
},
|
|
1446
1446
|
getCertificate: {
|
|
1447
|
-
ID:
|
|
1447
|
+
ID: 0x00a5, // 165
|
|
1448
1448
|
request: null,
|
|
1449
1449
|
response: {
|
|
1450
1450
|
status: types_1.EmberStatus,
|
|
1451
|
-
localCert: types_1.EmberCertificateData
|
|
1451
|
+
localCert: types_1.EmberCertificateData,
|
|
1452
1452
|
},
|
|
1453
1453
|
},
|
|
1454
1454
|
getCertificate283k1: {
|
|
1455
|
-
ID:
|
|
1455
|
+
ID: 0x00ec, // 236
|
|
1456
1456
|
request: null,
|
|
1457
1457
|
response: {
|
|
1458
1458
|
status: types_1.EmberStatus,
|
|
1459
|
-
localCert: types_1.EmberCertificate283k1Data
|
|
1459
|
+
localCert: types_1.EmberCertificate283k1Data,
|
|
1460
1460
|
},
|
|
1461
1461
|
},
|
|
1462
1462
|
dsaSign: {
|
|
1463
|
-
ID:
|
|
1463
|
+
ID: 0x00a6, // 166
|
|
1464
1464
|
request: {
|
|
1465
|
-
message: types_1.LVBytes
|
|
1465
|
+
message: types_1.LVBytes,
|
|
1466
1466
|
},
|
|
1467
1467
|
response: {
|
|
1468
|
-
status: types_1.EmberStatus
|
|
1468
|
+
status: types_1.EmberStatus,
|
|
1469
1469
|
},
|
|
1470
1470
|
},
|
|
1471
1471
|
dsaSignHandler: {
|
|
1472
|
-
ID:
|
|
1472
|
+
ID: 0x00a7, // 167
|
|
1473
1473
|
request: null,
|
|
1474
1474
|
response: {
|
|
1475
1475
|
status: types_1.EmberStatus,
|
|
1476
|
-
message: types_1.LVBytes
|
|
1476
|
+
message: types_1.LVBytes,
|
|
1477
1477
|
},
|
|
1478
1478
|
},
|
|
1479
1479
|
dsaVerify: {
|
|
1480
|
-
ID:
|
|
1480
|
+
ID: 0x00a3, // 163
|
|
1481
1481
|
request: {
|
|
1482
1482
|
digest: types_1.EmberMessageDigest,
|
|
1483
1483
|
signerCertificate: types_1.EmberCertificateData,
|
|
1484
|
-
receivedSig: types_1.EmberSignatureData
|
|
1484
|
+
receivedSig: types_1.EmberSignatureData,
|
|
1485
1485
|
},
|
|
1486
1486
|
response: {
|
|
1487
|
-
status: types_1.EmberStatus
|
|
1487
|
+
status: types_1.EmberStatus,
|
|
1488
1488
|
},
|
|
1489
1489
|
},
|
|
1490
1490
|
dsaVerifyHandler: {
|
|
1491
1491
|
ID: 0x0078, // 120
|
|
1492
1492
|
request: null,
|
|
1493
1493
|
response: {
|
|
1494
|
-
status: types_1.EmberStatus
|
|
1494
|
+
status: types_1.EmberStatus,
|
|
1495
1495
|
},
|
|
1496
1496
|
},
|
|
1497
1497
|
dsaVerify283k1: {
|
|
1498
|
-
ID:
|
|
1498
|
+
ID: 0x00b0, // 176
|
|
1499
1499
|
request: {
|
|
1500
1500
|
digest: types_1.EmberMessageDigest,
|
|
1501
1501
|
signerCertificate: types_1.EmberCertificate283k1Data,
|
|
1502
|
-
receivedSig: types_1.EmberSignature283k1Data
|
|
1502
|
+
receivedSig: types_1.EmberSignature283k1Data,
|
|
1503
1503
|
},
|
|
1504
1504
|
response: {
|
|
1505
|
-
status: types_1.EmberStatus
|
|
1505
|
+
status: types_1.EmberStatus,
|
|
1506
1506
|
},
|
|
1507
1507
|
},
|
|
1508
1508
|
setPreinstalledCbkeData: {
|
|
1509
|
-
ID:
|
|
1509
|
+
ID: 0x00a2, // 162
|
|
1510
1510
|
request: {
|
|
1511
1511
|
caPublic: types_1.EmberPublicKeyData,
|
|
1512
1512
|
myCert: types_1.EmberCertificateData,
|
|
1513
|
-
myKey: types_1.EmberPrivateKeyData
|
|
1513
|
+
myKey: types_1.EmberPrivateKeyData,
|
|
1514
1514
|
},
|
|
1515
1515
|
response: {
|
|
1516
|
-
status: types_1.EmberStatus
|
|
1516
|
+
status: types_1.EmberStatus,
|
|
1517
1517
|
},
|
|
1518
1518
|
},
|
|
1519
1519
|
// setPreinstalledCbkeData283k1: {
|
|
@@ -1531,106 +1531,106 @@ exports.FRAMES = {
|
|
|
1531
1531
|
mfglibStart: {
|
|
1532
1532
|
ID: 0x0083, // 131
|
|
1533
1533
|
request: {
|
|
1534
|
-
rxCallback: types_1.Bool
|
|
1534
|
+
rxCallback: types_1.Bool,
|
|
1535
1535
|
},
|
|
1536
1536
|
response: {
|
|
1537
|
-
status: types_1.EmberStatus
|
|
1537
|
+
status: types_1.EmberStatus,
|
|
1538
1538
|
},
|
|
1539
1539
|
},
|
|
1540
1540
|
mfglibEnd: {
|
|
1541
1541
|
ID: 0x0084, // 132
|
|
1542
1542
|
request: null,
|
|
1543
1543
|
response: {
|
|
1544
|
-
status: types_1.EmberStatus
|
|
1544
|
+
status: types_1.EmberStatus,
|
|
1545
1545
|
},
|
|
1546
1546
|
},
|
|
1547
1547
|
mfglibStartTone: {
|
|
1548
1548
|
ID: 0x0085, // 133
|
|
1549
1549
|
request: null,
|
|
1550
1550
|
response: {
|
|
1551
|
-
status: types_1.EmberStatus
|
|
1551
|
+
status: types_1.EmberStatus,
|
|
1552
1552
|
},
|
|
1553
1553
|
},
|
|
1554
1554
|
mfglibStopTone: {
|
|
1555
1555
|
ID: 0x0086, // 134
|
|
1556
1556
|
request: null,
|
|
1557
1557
|
response: {
|
|
1558
|
-
status: types_1.EmberStatus
|
|
1558
|
+
status: types_1.EmberStatus,
|
|
1559
1559
|
},
|
|
1560
1560
|
},
|
|
1561
1561
|
mfglibStartStream: {
|
|
1562
1562
|
ID: 0x0087, // 135
|
|
1563
1563
|
request: null,
|
|
1564
1564
|
response: {
|
|
1565
|
-
status: types_1.EmberStatus
|
|
1565
|
+
status: types_1.EmberStatus,
|
|
1566
1566
|
},
|
|
1567
1567
|
},
|
|
1568
1568
|
mfglibStopStream: {
|
|
1569
1569
|
ID: 0x0088, // 136
|
|
1570
1570
|
request: null,
|
|
1571
1571
|
response: {
|
|
1572
|
-
status: types_1.EmberStatus
|
|
1572
|
+
status: types_1.EmberStatus,
|
|
1573
1573
|
},
|
|
1574
1574
|
},
|
|
1575
1575
|
mfglibSendPacket: {
|
|
1576
1576
|
ID: 0x0089, // 137
|
|
1577
1577
|
request: {
|
|
1578
|
-
packet: types_1.LVBytes
|
|
1578
|
+
packet: types_1.LVBytes,
|
|
1579
1579
|
},
|
|
1580
1580
|
response: {
|
|
1581
|
-
status: types_1.EmberStatus
|
|
1581
|
+
status: types_1.EmberStatus,
|
|
1582
1582
|
},
|
|
1583
1583
|
},
|
|
1584
1584
|
mfglibSetChannel: {
|
|
1585
|
-
ID:
|
|
1585
|
+
ID: 0x008a, // 138
|
|
1586
1586
|
request: {
|
|
1587
|
-
channel: types_1.uint8_t
|
|
1587
|
+
channel: types_1.uint8_t,
|
|
1588
1588
|
},
|
|
1589
1589
|
response: {
|
|
1590
|
-
status: types_1.EmberStatus
|
|
1590
|
+
status: types_1.EmberStatus,
|
|
1591
1591
|
},
|
|
1592
1592
|
},
|
|
1593
1593
|
mfglibGetChannel: {
|
|
1594
|
-
ID:
|
|
1594
|
+
ID: 0x008b, // 139
|
|
1595
1595
|
request: null,
|
|
1596
1596
|
response: {
|
|
1597
|
-
channel: types_1.uint8_t
|
|
1597
|
+
channel: types_1.uint8_t,
|
|
1598
1598
|
},
|
|
1599
1599
|
},
|
|
1600
1600
|
mfglibSetPower: {
|
|
1601
|
-
ID:
|
|
1601
|
+
ID: 0x008c, // 140
|
|
1602
1602
|
request: {
|
|
1603
1603
|
txPowerMode: types_1.uint16_t,
|
|
1604
|
-
power: types_1.int8s
|
|
1604
|
+
power: types_1.int8s,
|
|
1605
1605
|
},
|
|
1606
1606
|
response: {
|
|
1607
|
-
status: types_1.EmberStatus
|
|
1607
|
+
status: types_1.EmberStatus,
|
|
1608
1608
|
},
|
|
1609
1609
|
},
|
|
1610
1610
|
mfglibGetPower: {
|
|
1611
|
-
ID:
|
|
1611
|
+
ID: 0x008d, // 141
|
|
1612
1612
|
request: null,
|
|
1613
1613
|
response: {
|
|
1614
|
-
power: types_1.int8s
|
|
1614
|
+
power: types_1.int8s,
|
|
1615
1615
|
},
|
|
1616
1616
|
},
|
|
1617
1617
|
mfglibRxHandler: {
|
|
1618
|
-
ID:
|
|
1618
|
+
ID: 0x008e, // 142
|
|
1619
1619
|
request: null,
|
|
1620
1620
|
response: {
|
|
1621
1621
|
linkQuality: types_1.uint8_t,
|
|
1622
1622
|
rssi: types_1.int8s,
|
|
1623
|
-
packet: types_1.LVBytes
|
|
1623
|
+
packet: types_1.LVBytes,
|
|
1624
1624
|
},
|
|
1625
1625
|
},
|
|
1626
1626
|
// Bootloader Frames
|
|
1627
1627
|
launchStandaloneBootloader: {
|
|
1628
|
-
ID:
|
|
1628
|
+
ID: 0x008f, // 143
|
|
1629
1629
|
request: {
|
|
1630
|
-
mode: types_1.uint8_t
|
|
1630
|
+
mode: types_1.uint8_t,
|
|
1631
1631
|
},
|
|
1632
1632
|
response: {
|
|
1633
|
-
status: types_1.EmberStatus
|
|
1633
|
+
status: types_1.EmberStatus,
|
|
1634
1634
|
},
|
|
1635
1635
|
},
|
|
1636
1636
|
sendBootloadMessage: {
|
|
@@ -1638,10 +1638,10 @@ exports.FRAMES = {
|
|
|
1638
1638
|
request: {
|
|
1639
1639
|
broadcast: types_1.Bool,
|
|
1640
1640
|
destEui64: types_1.EmberEUI64,
|
|
1641
|
-
message: types_1.LVBytes
|
|
1641
|
+
message: types_1.LVBytes,
|
|
1642
1642
|
},
|
|
1643
1643
|
response: {
|
|
1644
|
-
status: types_1.EmberStatus
|
|
1644
|
+
status: types_1.EmberStatus,
|
|
1645
1645
|
},
|
|
1646
1646
|
},
|
|
1647
1647
|
getStandaloneBootloaderVersionPlatMicroPhy: {
|
|
@@ -1651,7 +1651,7 @@ exports.FRAMES = {
|
|
|
1651
1651
|
bootloader_version: types_1.uint16_t,
|
|
1652
1652
|
nodePlat: types_1.uint8_t,
|
|
1653
1653
|
nodeMicro: types_1.uint8_t,
|
|
1654
|
-
nodePhy: types_1.uint8_t
|
|
1654
|
+
nodePhy: types_1.uint8_t,
|
|
1655
1655
|
},
|
|
1656
1656
|
},
|
|
1657
1657
|
incomingBootloadMessageHandler: {
|
|
@@ -1661,7 +1661,7 @@ exports.FRAMES = {
|
|
|
1661
1661
|
longId: types_1.EmberEUI64,
|
|
1662
1662
|
lastHopLqi: types_1.uint8_t,
|
|
1663
1663
|
lastHopRssi: types_1.int8s,
|
|
1664
|
-
message: types_1.LVBytes
|
|
1664
|
+
message: types_1.LVBytes,
|
|
1665
1665
|
},
|
|
1666
1666
|
},
|
|
1667
1667
|
bootloadTransmitCompleteHandler: {
|
|
@@ -1669,145 +1669,145 @@ exports.FRAMES = {
|
|
|
1669
1669
|
request: null,
|
|
1670
1670
|
response: {
|
|
1671
1671
|
status: types_1.EmberStatus,
|
|
1672
|
-
message: types_1.LVBytes
|
|
1672
|
+
message: types_1.LVBytes,
|
|
1673
1673
|
},
|
|
1674
1674
|
},
|
|
1675
1675
|
aesEncrypt: {
|
|
1676
1676
|
ID: 0x0094, // 148
|
|
1677
1677
|
request: {
|
|
1678
1678
|
plaintext: (0, types_1.fixed_list)(16, types_1.uint8_t),
|
|
1679
|
-
key: (0, types_1.fixed_list)(16, types_1.uint8_t)
|
|
1679
|
+
key: (0, types_1.fixed_list)(16, types_1.uint8_t),
|
|
1680
1680
|
},
|
|
1681
1681
|
response: {
|
|
1682
|
-
ciphertext: (0, types_1.fixed_list)(16, types_1.uint8_t)
|
|
1682
|
+
ciphertext: (0, types_1.fixed_list)(16, types_1.uint8_t),
|
|
1683
1683
|
},
|
|
1684
1684
|
},
|
|
1685
1685
|
overrideCurrentChannel: {
|
|
1686
1686
|
ID: 0x0095, // 149
|
|
1687
1687
|
request: {
|
|
1688
|
-
channel: types_1.uint8_t
|
|
1688
|
+
channel: types_1.uint8_t,
|
|
1689
1689
|
},
|
|
1690
1690
|
response: {
|
|
1691
|
-
status: types_1.EmberStatus
|
|
1691
|
+
status: types_1.EmberStatus,
|
|
1692
1692
|
},
|
|
1693
1693
|
},
|
|
1694
1694
|
// ZLL Frames
|
|
1695
1695
|
zllNetworkOps: {
|
|
1696
|
-
ID:
|
|
1696
|
+
ID: 0x00b2, // 178
|
|
1697
1697
|
request: {
|
|
1698
1698
|
networkInfo: types_1.EmberZllNetwork,
|
|
1699
1699
|
op: types_1.EzspZllNetworkOperation,
|
|
1700
|
-
radioTxPower: types_1.int8s
|
|
1700
|
+
radioTxPower: types_1.int8s,
|
|
1701
1701
|
},
|
|
1702
1702
|
response: {
|
|
1703
|
-
status: types_1.EmberStatus
|
|
1703
|
+
status: types_1.EmberStatus,
|
|
1704
1704
|
},
|
|
1705
1705
|
},
|
|
1706
1706
|
zllSetInitialSecurityState: {
|
|
1707
|
-
ID:
|
|
1707
|
+
ID: 0x00b3, // 179
|
|
1708
1708
|
request: {
|
|
1709
1709
|
networkKey: types_1.EmberKeyData,
|
|
1710
|
-
securityState: types_1.EmberZllInitialSecurityState
|
|
1710
|
+
securityState: types_1.EmberZllInitialSecurityState,
|
|
1711
1711
|
},
|
|
1712
1712
|
response: {
|
|
1713
|
-
status: types_1.EmberStatus
|
|
1713
|
+
status: types_1.EmberStatus,
|
|
1714
1714
|
},
|
|
1715
1715
|
},
|
|
1716
1716
|
zllStartScan: {
|
|
1717
|
-
ID:
|
|
1717
|
+
ID: 0x00b4, // 180
|
|
1718
1718
|
request: {
|
|
1719
1719
|
channelMask: types_1.uint32_t,
|
|
1720
1720
|
radioPowerForScan: types_1.int8s,
|
|
1721
|
-
nodeType: types_1.EmberNodeType
|
|
1721
|
+
nodeType: types_1.EmberNodeType,
|
|
1722
1722
|
},
|
|
1723
1723
|
response: {
|
|
1724
|
-
status: types_1.EmberStatus
|
|
1724
|
+
status: types_1.EmberStatus,
|
|
1725
1725
|
},
|
|
1726
1726
|
},
|
|
1727
1727
|
zllSetRxOnWhenIdle: {
|
|
1728
|
-
ID:
|
|
1728
|
+
ID: 0x00b5, // 181
|
|
1729
1729
|
request: {
|
|
1730
|
-
durationMs: types_1.uint16_t
|
|
1730
|
+
durationMs: types_1.uint16_t,
|
|
1731
1731
|
},
|
|
1732
1732
|
response: {
|
|
1733
|
-
status: types_1.EmberStatus
|
|
1733
|
+
status: types_1.EmberStatus,
|
|
1734
1734
|
},
|
|
1735
1735
|
},
|
|
1736
1736
|
zllNetworkFoundHandler: {
|
|
1737
|
-
ID:
|
|
1737
|
+
ID: 0x00b6, // 182
|
|
1738
1738
|
request: null,
|
|
1739
1739
|
response: {
|
|
1740
1740
|
networkInfo: types_1.EmberZllNetwork,
|
|
1741
1741
|
isDeviceInfoNull: types_1.Bool,
|
|
1742
1742
|
deviceInfo: types_1.EmberZllDeviceInfoRecord,
|
|
1743
1743
|
lastHopLqi: types_1.uint8_t,
|
|
1744
|
-
lastHopRssi: types_1.int8s
|
|
1744
|
+
lastHopRssi: types_1.int8s,
|
|
1745
1745
|
},
|
|
1746
1746
|
},
|
|
1747
1747
|
zllScanCompleteHandler: {
|
|
1748
|
-
ID:
|
|
1748
|
+
ID: 0x00b7, // 183
|
|
1749
1749
|
request: null,
|
|
1750
1750
|
response: {
|
|
1751
|
-
status: types_1.EmberStatus
|
|
1751
|
+
status: types_1.EmberStatus,
|
|
1752
1752
|
},
|
|
1753
1753
|
},
|
|
1754
1754
|
zllAddressAssignmentHandler: {
|
|
1755
|
-
ID:
|
|
1755
|
+
ID: 0x00b8, // 184
|
|
1756
1756
|
request: null,
|
|
1757
1757
|
response: {
|
|
1758
1758
|
addressInfo: types_1.EmberZllAddressAssignment,
|
|
1759
1759
|
lastHopLqi: types_1.uint8_t,
|
|
1760
|
-
lastHopRssi: types_1.int8s
|
|
1760
|
+
lastHopRssi: types_1.int8s,
|
|
1761
1761
|
},
|
|
1762
1762
|
},
|
|
1763
1763
|
setLogicalAndRadioChannel: {
|
|
1764
|
-
ID:
|
|
1764
|
+
ID: 0x00b9, // 185
|
|
1765
1765
|
request: {
|
|
1766
|
-
radioChannel: types_1.uint8_t
|
|
1766
|
+
radioChannel: types_1.uint8_t,
|
|
1767
1767
|
},
|
|
1768
1768
|
response: {
|
|
1769
|
-
status: types_1.EmberStatus
|
|
1769
|
+
status: types_1.EmberStatus,
|
|
1770
1770
|
},
|
|
1771
1771
|
},
|
|
1772
1772
|
getLogicalChannel: {
|
|
1773
|
-
ID:
|
|
1773
|
+
ID: 0x00ba, // 186
|
|
1774
1774
|
request: null,
|
|
1775
1775
|
response: {
|
|
1776
|
-
logicalChannel: types_1.uint8_t
|
|
1776
|
+
logicalChannel: types_1.uint8_t,
|
|
1777
1777
|
},
|
|
1778
1778
|
},
|
|
1779
1779
|
zllTouchLinkTargetHandler: {
|
|
1780
|
-
ID:
|
|
1780
|
+
ID: 0x00bb, // 187
|
|
1781
1781
|
request: null,
|
|
1782
1782
|
response: {
|
|
1783
|
-
networkInfo: types_1.EmberZllNetwork
|
|
1783
|
+
networkInfo: types_1.EmberZllNetwork,
|
|
1784
1784
|
},
|
|
1785
1785
|
},
|
|
1786
1786
|
zllGetTokens: {
|
|
1787
|
-
ID:
|
|
1787
|
+
ID: 0x00bc, // 188
|
|
1788
1788
|
request: null,
|
|
1789
1789
|
response: {
|
|
1790
1790
|
data: types_1.EmberTokTypeStackZllData,
|
|
1791
|
-
security: types_1.EmberTokTypeStackZllSecurity
|
|
1791
|
+
security: types_1.EmberTokTypeStackZllSecurity,
|
|
1792
1792
|
},
|
|
1793
1793
|
},
|
|
1794
1794
|
zllSetDataToken: {
|
|
1795
|
-
ID:
|
|
1795
|
+
ID: 0x00bd, // 189
|
|
1796
1796
|
request: {
|
|
1797
|
-
data: types_1.EmberTokTypeStackZllData
|
|
1797
|
+
data: types_1.EmberTokTypeStackZllData,
|
|
1798
1798
|
},
|
|
1799
1799
|
response: null,
|
|
1800
1800
|
},
|
|
1801
1801
|
zllSetNonZllNetwork: {
|
|
1802
|
-
ID:
|
|
1802
|
+
ID: 0x00bf, // 191
|
|
1803
1803
|
request: null,
|
|
1804
1804
|
response: null,
|
|
1805
1805
|
},
|
|
1806
1806
|
isZllNetwork: {
|
|
1807
|
-
ID:
|
|
1807
|
+
ID: 0x00be, // 190
|
|
1808
1808
|
request: null,
|
|
1809
1809
|
response: {
|
|
1810
|
-
isZllNetwork: types_1.Bool
|
|
1810
|
+
isZllNetwork: types_1.Bool,
|
|
1811
1811
|
},
|
|
1812
1812
|
},
|
|
1813
1813
|
// rf4ceSetPairingTableEntry: {
|
|
@@ -2092,7 +2092,7 @@ exports.FRAMES = {
|
|
|
2092
2092
|
// },
|
|
2093
2093
|
// Green Power Frames
|
|
2094
2094
|
gpProxyTableProcessGpPairing: {
|
|
2095
|
-
ID:
|
|
2095
|
+
ID: 0x00c9, // 201
|
|
2096
2096
|
request: {
|
|
2097
2097
|
options: types_1.uint32_t,
|
|
2098
2098
|
addr: types_1.EmberGpAddress,
|
|
@@ -2103,14 +2103,14 @@ exports.FRAMES = {
|
|
|
2103
2103
|
sinkIeeeAddress: (0, types_1.fixed_list)(8, types_1.uint8_t),
|
|
2104
2104
|
gpdKey: types_1.EmberKeyData,
|
|
2105
2105
|
gpdSecurityFrameCounter: types_1.uint32_t,
|
|
2106
|
-
forwardingRadius: types_1.uint8_t
|
|
2106
|
+
forwardingRadius: types_1.uint8_t,
|
|
2107
2107
|
},
|
|
2108
2108
|
response: {
|
|
2109
|
-
gpPairingAdded: types_1.Bool
|
|
2109
|
+
gpPairingAdded: types_1.Bool,
|
|
2110
2110
|
},
|
|
2111
2111
|
},
|
|
2112
2112
|
dGpSend: {
|
|
2113
|
-
ID:
|
|
2113
|
+
ID: 0x00c6, // 198
|
|
2114
2114
|
request: {
|
|
2115
2115
|
action: types_1.Bool,
|
|
2116
2116
|
useCca: types_1.Bool,
|
|
@@ -2118,22 +2118,22 @@ exports.FRAMES = {
|
|
|
2118
2118
|
gpdCommandId: types_1.uint8_t,
|
|
2119
2119
|
gpdAsdu: types_1.LVBytes,
|
|
2120
2120
|
gpepHandle: types_1.uint8_t,
|
|
2121
|
-
gpTxQueueEntryLifetimeMs: types_1.uint16_t
|
|
2121
|
+
gpTxQueueEntryLifetimeMs: types_1.uint16_t,
|
|
2122
2122
|
},
|
|
2123
2123
|
response: {
|
|
2124
|
-
status: types_1.EmberStatus
|
|
2124
|
+
status: types_1.EmberStatus,
|
|
2125
2125
|
},
|
|
2126
2126
|
},
|
|
2127
2127
|
dGpSentHandler: {
|
|
2128
|
-
ID:
|
|
2128
|
+
ID: 0x00c7, // 199
|
|
2129
2129
|
request: null,
|
|
2130
2130
|
response: {
|
|
2131
2131
|
status: types_1.EmberStatus,
|
|
2132
|
-
gpepHandle: types_1.uint8_t
|
|
2132
|
+
gpepHandle: types_1.uint8_t,
|
|
2133
2133
|
},
|
|
2134
2134
|
},
|
|
2135
2135
|
gpepIncomingMessageHandler: {
|
|
2136
|
-
ID:
|
|
2136
|
+
ID: 0x00c5, // 197
|
|
2137
2137
|
request: null,
|
|
2138
2138
|
response: {
|
|
2139
2139
|
status: types_1.EmberStatus,
|
|
@@ -2155,30 +2155,30 @@ exports.FRAMES = {
|
|
|
2155
2155
|
},
|
|
2156
2156
|
},
|
|
2157
2157
|
changeSourceRouteHandler: {
|
|
2158
|
-
ID:
|
|
2158
|
+
ID: 0x00c4,
|
|
2159
2159
|
request: null,
|
|
2160
2160
|
response: {
|
|
2161
2161
|
newChildId: types_1.EmberNodeId,
|
|
2162
|
-
newParentId: types_1.EmberNodeId
|
|
2162
|
+
newParentId: types_1.EmberNodeId,
|
|
2163
2163
|
},
|
|
2164
|
-
maxV: 8
|
|
2164
|
+
maxV: 8,
|
|
2165
2165
|
},
|
|
2166
2166
|
incomingNetworkStatusHandler: {
|
|
2167
|
-
ID:
|
|
2167
|
+
ID: 0x00c4,
|
|
2168
2168
|
request: null,
|
|
2169
2169
|
response: {
|
|
2170
2170
|
errorCode: types_1.EmberStackError,
|
|
2171
|
-
target: types_1.EmberNodeId
|
|
2171
|
+
target: types_1.EmberNodeId,
|
|
2172
2172
|
},
|
|
2173
|
-
minV: 9
|
|
2173
|
+
minV: 9,
|
|
2174
2174
|
},
|
|
2175
2175
|
setSourceRouteDiscoveryMode: {
|
|
2176
2176
|
ID: 0x005a,
|
|
2177
2177
|
request: {
|
|
2178
|
-
mode: types_1.uint8_t
|
|
2178
|
+
mode: types_1.uint8_t,
|
|
2179
2179
|
},
|
|
2180
2180
|
response: {
|
|
2181
|
-
remainingTime: types_1.uint32_t
|
|
2181
|
+
remainingTime: types_1.uint32_t,
|
|
2182
2182
|
},
|
|
2183
2183
|
},
|
|
2184
2184
|
};
|
|
@@ -2198,10 +2198,10 @@ exports.ZDOREQUESTS = {
|
|
|
2198
2198
|
ID: 0x0002,
|
|
2199
2199
|
request: {
|
|
2200
2200
|
transId: types_1.uint8_t,
|
|
2201
|
-
dstaddr: types_1.EmberNodeId
|
|
2201
|
+
dstaddr: types_1.EmberNodeId,
|
|
2202
2202
|
},
|
|
2203
2203
|
response: {
|
|
2204
|
-
status: types_1.EmberStatus
|
|
2204
|
+
status: types_1.EmberStatus,
|
|
2205
2205
|
},
|
|
2206
2206
|
},
|
|
2207
2207
|
simpleDescReq: {
|
|
@@ -2209,20 +2209,20 @@ exports.ZDOREQUESTS = {
|
|
|
2209
2209
|
request: {
|
|
2210
2210
|
transId: types_1.uint8_t,
|
|
2211
2211
|
dstaddr: types_1.EmberNodeId,
|
|
2212
|
-
targetEp: types_1.uint8_t
|
|
2212
|
+
targetEp: types_1.uint8_t,
|
|
2213
2213
|
},
|
|
2214
2214
|
response: {
|
|
2215
|
-
status: types_1.EmberStatus
|
|
2215
|
+
status: types_1.EmberStatus,
|
|
2216
2216
|
},
|
|
2217
2217
|
},
|
|
2218
2218
|
activeEpReq: {
|
|
2219
2219
|
ID: 0x0005,
|
|
2220
2220
|
request: {
|
|
2221
2221
|
transId: types_1.uint8_t,
|
|
2222
|
-
dstaddr: types_1.EmberNodeId
|
|
2222
|
+
dstaddr: types_1.EmberNodeId,
|
|
2223
2223
|
},
|
|
2224
2224
|
response: {
|
|
2225
|
-
status: types_1.EmberStatus
|
|
2225
|
+
status: types_1.EmberStatus,
|
|
2226
2226
|
},
|
|
2227
2227
|
},
|
|
2228
2228
|
// ZDO Bind Manager Attributes
|
|
@@ -2233,10 +2233,10 @@ exports.ZDOREQUESTS = {
|
|
|
2233
2233
|
sourceEui: types_1.EmberEUI64,
|
|
2234
2234
|
sourceEp: types_1.uint8_t,
|
|
2235
2235
|
clusterId: types_1.uint16_t,
|
|
2236
|
-
destAddr: types_1.EmberMultiAddress
|
|
2236
|
+
destAddr: types_1.EmberMultiAddress,
|
|
2237
2237
|
},
|
|
2238
2238
|
response: {
|
|
2239
|
-
status: types_1.EmberStatus
|
|
2239
|
+
status: types_1.EmberStatus,
|
|
2240
2240
|
},
|
|
2241
2241
|
},
|
|
2242
2242
|
unBindReq: {
|
|
@@ -2246,31 +2246,31 @@ exports.ZDOREQUESTS = {
|
|
|
2246
2246
|
sourceEui: types_1.EmberEUI64,
|
|
2247
2247
|
sourceEp: types_1.uint8_t,
|
|
2248
2248
|
clusterId: types_1.uint16_t,
|
|
2249
|
-
destAddr: types_1.EmberMultiAddress
|
|
2249
|
+
destAddr: types_1.EmberMultiAddress,
|
|
2250
2250
|
},
|
|
2251
2251
|
response: {
|
|
2252
|
-
status: types_1.EmberStatus
|
|
2252
|
+
status: types_1.EmberStatus,
|
|
2253
2253
|
},
|
|
2254
2254
|
},
|
|
2255
|
-
// ZDO network manager attributes commands
|
|
2255
|
+
// ZDO network manager attributes commands
|
|
2256
2256
|
mgmtLqiReq: {
|
|
2257
2257
|
ID: 0x0031,
|
|
2258
2258
|
request: {
|
|
2259
2259
|
transId: types_1.uint8_t,
|
|
2260
|
-
startindex: types_1.uint8_t
|
|
2260
|
+
startindex: types_1.uint8_t,
|
|
2261
2261
|
},
|
|
2262
2262
|
response: {
|
|
2263
|
-
status: types_1.EmberStatus
|
|
2263
|
+
status: types_1.EmberStatus,
|
|
2264
2264
|
},
|
|
2265
2265
|
},
|
|
2266
2266
|
mgmtRtgReq: {
|
|
2267
2267
|
ID: 0x0032,
|
|
2268
2268
|
request: {
|
|
2269
2269
|
transId: types_1.uint8_t,
|
|
2270
|
-
startindex: types_1.uint8_t
|
|
2270
|
+
startindex: types_1.uint8_t,
|
|
2271
2271
|
},
|
|
2272
2272
|
response: {
|
|
2273
|
-
status: types_1.EmberStatus
|
|
2273
|
+
status: types_1.EmberStatus,
|
|
2274
2274
|
},
|
|
2275
2275
|
},
|
|
2276
2276
|
mgmtLeaveReq: {
|
|
@@ -2278,10 +2278,10 @@ exports.ZDOREQUESTS = {
|
|
|
2278
2278
|
request: {
|
|
2279
2279
|
transId: types_1.uint8_t,
|
|
2280
2280
|
destAddr: types_1.EmberEUI64,
|
|
2281
|
-
removechildrenRejoin: types_1.uint8_t
|
|
2281
|
+
removechildrenRejoin: types_1.uint8_t,
|
|
2282
2282
|
},
|
|
2283
2283
|
response: {
|
|
2284
|
-
status: types_1.EmberStatus
|
|
2284
|
+
status: types_1.EmberStatus,
|
|
2285
2285
|
},
|
|
2286
2286
|
},
|
|
2287
2287
|
mgmtPermitJoinReq: {
|
|
@@ -2289,10 +2289,10 @@ exports.ZDOREQUESTS = {
|
|
|
2289
2289
|
request: {
|
|
2290
2290
|
transId: types_1.uint8_t,
|
|
2291
2291
|
duration: types_1.uint8_t,
|
|
2292
|
-
tcSignificant: types_1.Bool
|
|
2292
|
+
tcSignificant: types_1.Bool,
|
|
2293
2293
|
},
|
|
2294
2294
|
response: {
|
|
2295
|
-
status: types_1.EmberStatus
|
|
2295
|
+
status: types_1.EmberStatus,
|
|
2296
2296
|
},
|
|
2297
2297
|
},
|
|
2298
2298
|
};
|
|
@@ -2304,7 +2304,7 @@ exports.ZDORESPONSES = {
|
|
|
2304
2304
|
transId: types_1.uint8_t,
|
|
2305
2305
|
status: types_1.EmberStatus,
|
|
2306
2306
|
nwkaddr: types_1.EmberNodeId,
|
|
2307
|
-
descriptor: types_1.EmberNodeDescriptor
|
|
2307
|
+
descriptor: types_1.EmberNodeDescriptor,
|
|
2308
2308
|
},
|
|
2309
2309
|
},
|
|
2310
2310
|
simpleDescRsp: {
|
|
@@ -2314,7 +2314,7 @@ exports.ZDORESPONSES = {
|
|
|
2314
2314
|
status: types_1.EmberStatus,
|
|
2315
2315
|
nwkaddr: types_1.EmberNodeId,
|
|
2316
2316
|
len: types_1.uint8_t,
|
|
2317
|
-
descriptor: types_1.EmberSimpleDescriptor
|
|
2317
|
+
descriptor: types_1.EmberSimpleDescriptor,
|
|
2318
2318
|
},
|
|
2319
2319
|
},
|
|
2320
2320
|
activeEpRsp: {
|
|
@@ -2323,54 +2323,54 @@ exports.ZDORESPONSES = {
|
|
|
2323
2323
|
transId: types_1.uint8_t,
|
|
2324
2324
|
status: types_1.EmberStatus,
|
|
2325
2325
|
nwkaddr: types_1.EmberNodeId,
|
|
2326
|
-
activeeplist: types_1.LVBytes
|
|
2327
|
-
}
|
|
2326
|
+
activeeplist: types_1.LVBytes,
|
|
2327
|
+
},
|
|
2328
2328
|
},
|
|
2329
2329
|
// ZDO Bind Manager Attributes
|
|
2330
2330
|
bindRsp: {
|
|
2331
2331
|
ID: 0x8021,
|
|
2332
2332
|
params: {
|
|
2333
2333
|
transId: types_1.uint8_t,
|
|
2334
|
-
status: types_1.EmberStatus
|
|
2335
|
-
}
|
|
2334
|
+
status: types_1.EmberStatus,
|
|
2335
|
+
},
|
|
2336
2336
|
},
|
|
2337
2337
|
unBindRsp: {
|
|
2338
2338
|
ID: 0x8022,
|
|
2339
2339
|
params: {
|
|
2340
2340
|
transId: types_1.uint8_t,
|
|
2341
|
-
status: types_1.EmberStatus
|
|
2342
|
-
}
|
|
2341
|
+
status: types_1.EmberStatus,
|
|
2342
|
+
},
|
|
2343
2343
|
},
|
|
2344
|
-
// ZDO network manager attributes commands
|
|
2344
|
+
// ZDO network manager attributes commands
|
|
2345
2345
|
mgmtLqiRsp: {
|
|
2346
2346
|
ID: 0x8031,
|
|
2347
2347
|
params: {
|
|
2348
2348
|
transId: types_1.uint8_t,
|
|
2349
2349
|
status: types_1.EmberStatus,
|
|
2350
|
-
neighborlqilist: types_1.EmberNeighbors
|
|
2351
|
-
}
|
|
2350
|
+
neighborlqilist: types_1.EmberNeighbors,
|
|
2351
|
+
},
|
|
2352
2352
|
},
|
|
2353
2353
|
mgmtRtgRsp: {
|
|
2354
2354
|
ID: 0x8032,
|
|
2355
2355
|
params: {
|
|
2356
2356
|
transId: types_1.uint8_t,
|
|
2357
2357
|
status: types_1.EmberStatus,
|
|
2358
|
-
routingtablelist: types_1.EmberRoutingTable
|
|
2359
|
-
}
|
|
2358
|
+
routingtablelist: types_1.EmberRoutingTable,
|
|
2359
|
+
},
|
|
2360
2360
|
},
|
|
2361
2361
|
mgmtLeaveRsp: {
|
|
2362
2362
|
ID: 0x8034,
|
|
2363
2363
|
params: {
|
|
2364
2364
|
transId: types_1.uint8_t,
|
|
2365
|
-
status: types_1.EmberStatus
|
|
2366
|
-
}
|
|
2365
|
+
status: types_1.EmberStatus,
|
|
2366
|
+
},
|
|
2367
2367
|
},
|
|
2368
2368
|
mgmtPermitJoinRsp: {
|
|
2369
2369
|
ID: 0x8036,
|
|
2370
2370
|
params: {
|
|
2371
2371
|
transId: types_1.uint8_t,
|
|
2372
|
-
status: types_1.EmberStatus
|
|
2373
|
-
}
|
|
2372
|
+
status: types_1.EmberStatus,
|
|
2373
|
+
},
|
|
2374
2374
|
},
|
|
2375
2375
|
};
|
|
2376
2376
|
exports.ZGP = {};
|