zigbee-herdsman 0.50.1 → 0.52.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 +20 -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 +27 -445
- package/dist/adapter/ember/adapter/emberAdapter.d.ts.map +1 -1
- package/dist/adapter/ember/adapter/emberAdapter.js +888 -1681
- 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 +5 -4
- package/dist/adapter/ember/adapter/oneWaitress.d.ts.map +1 -1
- package/dist/adapter/ember/adapter/oneWaitress.js +44 -30
- package/dist/adapter/ember/adapter/oneWaitress.js.map +1 -1
- package/dist/adapter/ember/adapter/tokensManager.d.ts +11 -10
- package/dist/adapter/ember/adapter/tokensManager.d.ts.map +1 -1
- package/dist/adapter/ember/adapter/tokensManager.js +118 -117
- package/dist/adapter/ember/adapter/tokensManager.js.map +1 -1
- package/dist/adapter/ember/consts.d.ts +1 -0
- package/dist/adapter/ember/consts.d.ts.map +1 -1
- package/dist/adapter/ember/consts.js +29 -27
- package/dist/adapter/ember/consts.js.map +1 -1
- package/dist/adapter/ember/enums.d.ts +130 -409
- package/dist/adapter/ember/enums.d.ts.map +1 -1
- package/dist/adapter/ember/enums.js +146 -484
- package/dist/adapter/ember/enums.js.map +1 -1
- package/dist/adapter/ember/ezsp/buffalo.d.ts +15 -4
- package/dist/adapter/ember/ezsp/buffalo.d.ts.map +1 -1
- package/dist/adapter/ember/ezsp/buffalo.js +148 -38
- package/dist/adapter/ember/ezsp/buffalo.js.map +1 -1
- package/dist/adapter/ember/ezsp/consts.d.ts +2 -1
- package/dist/adapter/ember/ezsp/consts.d.ts.map +1 -1
- package/dist/adapter/ember/ezsp/consts.js +6 -5
- package/dist/adapter/ember/ezsp/consts.js.map +1 -1
- package/dist/adapter/ember/ezsp/enums.d.ts +160 -49
- package/dist/adapter/ember/ezsp/enums.d.ts.map +1 -1
- package/dist/adapter/ember/ezsp/enums.js +177 -49
- package/dist/adapter/ember/ezsp/enums.js.map +1 -1
- package/dist/adapter/ember/ezsp/ezsp.d.ts +991 -729
- package/dist/adapter/ember/ezsp/ezsp.d.ts.map +1 -1
- package/dist/adapter/ember/ezsp/ezsp.js +3219 -2683
- package/dist/adapter/ember/ezsp/ezsp.js.map +1 -1
- package/dist/adapter/ember/ezspError.d.ts +6 -0
- package/dist/adapter/ember/ezspError.d.ts.map +1 -0
- package/dist/adapter/ember/ezspError.js +13 -0
- package/dist/adapter/ember/ezspError.js.map +1 -0
- package/dist/adapter/ember/types.d.ts +91 -43
- package/dist/adapter/ember/types.d.ts.map +1 -1
- package/dist/adapter/ember/uart/ash.d.ts +16 -12
- package/dist/adapter/ember/uart/ash.d.ts.map +1 -1
- package/dist/adapter/ember/uart/ash.js +81 -82
- 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 +0 -8
- package/dist/adapter/ember/utils/math.d.ts.map +1 -1
- package/dist/adapter/ember/utils/math.js +12 -31
- 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 +283 -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 -57
- package/dist/adapter/ember/adapter/requestQueue.d.ts.map +0 -1
- package/dist/adapter/ember/adapter/requestQueue.js +0 -139
- package/dist/adapter/ember/adapter/requestQueue.js.map +0 -1
- package/dist/adapter/ember/zdo.d.ts +0 -925
- package/dist/adapter/ember/zdo.d.ts.map +0 -1
- package/dist/adapter/ember/zdo.js +0 -723
- package/dist/adapter/ember/zdo.js.map +0 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/** Status
|
|
1
|
+
/** Status Codes contains error and status code definitions used by Simplicity SDK software components and stacks. */
|
|
2
2
|
export declare enum SLStatus {
|
|
3
3
|
/** No error. */
|
|
4
4
|
OK = 0,
|
|
@@ -162,6 +162,34 @@ export declare enum SLStatus {
|
|
|
162
162
|
INVALID_CHANNEL_MASK = 79,
|
|
163
163
|
/** Bad scan duration. */
|
|
164
164
|
BAD_SCAN_DURATION = 80,
|
|
165
|
+
/** The MAC transmit queue is full */
|
|
166
|
+
MAC_TRANSMIT_QUEUE_FULL = 83,
|
|
167
|
+
/**
|
|
168
|
+
* The transmit attempt failed because the radio scheduler could not find a slot to transmit this packet in or
|
|
169
|
+
* a higher priority event interrupted it
|
|
170
|
+
*/
|
|
171
|
+
TRANSMIT_SCHEDULER_FAIL = 84,
|
|
172
|
+
/** An unsupported channel setting was specified */
|
|
173
|
+
TRANSMIT_INVALID_CHANNEL = 85,
|
|
174
|
+
/** An unsupported power setting was specified */
|
|
175
|
+
TRANSMIT_INVALID_POWER = 86,
|
|
176
|
+
/** The expected ACK was received after the last transmission */
|
|
177
|
+
TRANSMIT_ACK_RECEIVED = 87,
|
|
178
|
+
/**
|
|
179
|
+
* The transmit attempt was blocked from going over the air.
|
|
180
|
+
* Typically this is due to the Radio Hold Off (RHO) or Coexistence plugins as they can prevent transmits based on external signals.
|
|
181
|
+
*/
|
|
182
|
+
TRANSMIT_BLOCKED = 88,
|
|
183
|
+
/** The initialization was aborted as the NVM3 instance is not aligned properly in memory */
|
|
184
|
+
NVM3_ALIGNMENT_INVALID = 89,
|
|
185
|
+
/** The initialization was aborted as the size of the NVM3 instance is too small */
|
|
186
|
+
NVM3_SIZE_TOO_SMALL = 90,
|
|
187
|
+
/** The initialization was aborted as the NVM3 page size is not supported */
|
|
188
|
+
NVM3_PAGE_SIZE_NOT_SUPPORTED = 91,
|
|
189
|
+
/** The application that there was an error initializing some of the tokens */
|
|
190
|
+
NVM3_TOKEN_INIT_FAILED = 92,
|
|
191
|
+
/** The initialization was aborted as the NVM3 instance was already opened with other parameters */
|
|
192
|
+
NVM3_OPENED_WITH_OTHER_PARAMETERS = 93,
|
|
165
193
|
/** Bonding procedure can't be started because device has no space left for bond. */
|
|
166
194
|
BT_OUT_OF_BONDS = 1026,
|
|
167
195
|
/** Unspecified error */
|
|
@@ -554,417 +582,77 @@ export declare enum SLStatus {
|
|
|
554
582
|
/** MATH numeric overflow */
|
|
555
583
|
COMPUTE_MATH_OVERFLOW = 5396,
|
|
556
584
|
/** MATH numeric underflow */
|
|
557
|
-
COMPUTE_MATH_UNDERFLOW = 5397
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
*/
|
|
563
|
-
|
|
564
|
-
/** The
|
|
565
|
-
|
|
566
|
-
/** The
|
|
567
|
-
|
|
568
|
-
/**
|
|
569
|
-
|
|
570
|
-
/** The
|
|
571
|
-
|
|
572
|
-
/** The
|
|
573
|
-
|
|
574
|
-
/**
|
|
575
|
-
|
|
576
|
-
/**
|
|
577
|
-
|
|
578
|
-
/** There
|
|
579
|
-
|
|
580
|
-
/** Packet is dropped by packet-handoff callbacks. */
|
|
581
|
-
PACKET_HANDOFF_DROP_PACKET = 25,
|
|
582
|
-
/** Specifies an invalid baud rate. */
|
|
583
|
-
SERIAL_INVALID_BAUD_RATE = 32,
|
|
584
|
-
/** Specifies an invalid serial port. */
|
|
585
|
-
SERIAL_INVALID_PORT = 33,
|
|
586
|
-
/** Tried to send too much data. */
|
|
587
|
-
SERIAL_TX_OVERFLOW = 34,
|
|
588
|
-
/** There wasn't enough space to store a received character and the character was dropped. */
|
|
589
|
-
SERIAL_RX_OVERFLOW = 35,
|
|
590
|
-
/** Detected a UART framing error. */
|
|
591
|
-
SERIAL_RX_FRAME_ERROR = 36,
|
|
592
|
-
/** Detected a UART parity error. */
|
|
593
|
-
SERIAL_RX_PARITY_ERROR = 37,
|
|
594
|
-
/** There is no received data to process. */
|
|
595
|
-
SERIAL_RX_EMPTY = 38,
|
|
596
|
-
/** The receive interrupt was not handled in time and a character was dropped. */
|
|
597
|
-
SERIAL_RX_OVERRUN_ERROR = 39,
|
|
598
|
-
/** The MAC transmit queue is full. */
|
|
599
|
-
MAC_TRANSMIT_QUEUE_FULL = 57,
|
|
600
|
-
/** MAC header FCF error on receive. */
|
|
601
|
-
MAC_UNKNOWN_HEADER_TYPE = 58,
|
|
602
|
-
/** MAC ACK header received. */
|
|
603
|
-
MAC_ACK_HEADER_TYPE = 59,
|
|
604
|
-
/** The MAC can't complete this task because it is scanning. */
|
|
605
|
-
MAC_SCANNING = 61,
|
|
606
|
-
/** No pending data exists for a data poll. */
|
|
607
|
-
MAC_NO_DATA = 49,
|
|
608
|
-
/** Attempts to scan when joined to a network. */
|
|
609
|
-
MAC_JOINED_NETWORK = 50,
|
|
610
|
-
/** Scan duration must be 0 to 14 inclusive. Tried to scan with an incorrect duration value. */
|
|
611
|
-
MAC_BAD_SCAN_DURATION = 51,
|
|
612
|
-
/** emberStartScan was called with an incorrect scan type. */
|
|
613
|
-
MAC_INCORRECT_SCAN_TYPE = 52,
|
|
614
|
-
/** emberStartScan was called with an invalid channel mask. */
|
|
615
|
-
MAC_INVALID_CHANNEL_MASK = 53,
|
|
616
|
-
/** Failed to scan the current channel because the relevant MAC command could not be transmitted. */
|
|
617
|
-
MAC_COMMAND_TRANSMIT_FAILURE = 54,
|
|
618
|
-
/** An ACK was expected following the transmission but the MAC level ACK was never received. */
|
|
619
|
-
MAC_NO_ACK_RECEIVED = 64,
|
|
620
|
-
/** MAC failed to transmit a message because it could not successfully perform a radio network switch. */
|
|
621
|
-
MAC_RADIO_NETWORK_SWITCH_FAILED = 65,
|
|
622
|
-
/** An indirect data message timed out before a poll requested it. */
|
|
623
|
-
MAC_INDIRECT_TIMEOUT = 66,
|
|
624
|
-
/**
|
|
625
|
-
* The Simulated EEPROM is telling the application that at least one flash page to be erased.
|
|
626
|
-
* The GREEN status means the current page has not filled above the ::ERASE_CRITICAL_THRESHOLD.
|
|
627
|
-
*
|
|
628
|
-
* The application should call the function ::halSimEepromErasePage() when it can to erase a page.
|
|
629
|
-
*/
|
|
630
|
-
SIM_EEPROM_ERASE_PAGE_GREEN = 67,
|
|
631
|
-
/**
|
|
632
|
-
* The Simulated EEPROM is telling the application that at least one flash page must be erased.
|
|
633
|
-
* The RED status means the current page has filled above the ::ERASE_CRITICAL_THRESHOLD.
|
|
634
|
-
*
|
|
635
|
-
* Due to the shrinking availability of write space, data could be lost.
|
|
636
|
-
* The application must call the function ::halSimEepromErasePage() as soon as possible to erase a page.
|
|
637
|
-
*/
|
|
638
|
-
SIM_EEPROM_ERASE_PAGE_RED = 68,
|
|
639
|
-
/**
|
|
640
|
-
* The Simulated EEPROM has run out of room to write new data and the data trying to be set has been lost.
|
|
641
|
-
* This error code is the result of ignoring the ::SIM_EEPROM_ERASE_PAGE_RED error code.
|
|
642
|
-
*
|
|
643
|
-
* The application must call the function ::halSimEepromErasePage() to make room for any further calls to set a token.
|
|
644
|
-
*/
|
|
645
|
-
SIM_EEPROM_FULL = 69,
|
|
646
|
-
/**
|
|
647
|
-
* Attempt 1 to initialize the Simulated EEPROM has failed.
|
|
648
|
-
*
|
|
649
|
-
* This failure means the information already stored in the Flash (or a lack thereof),
|
|
650
|
-
* is fatally incompatible with the token information compiled into the code image being run.
|
|
651
|
-
*/
|
|
652
|
-
SIM_EEPROM_INIT_1_FAILED = 72,
|
|
653
|
-
/**
|
|
654
|
-
* Attempt 2 to initialize the Simulated EEPROM has failed.
|
|
655
|
-
*
|
|
656
|
-
* This failure means Attempt 1 failed, and the token system failed to properly reload default tokens and reset the Simulated EEPROM.
|
|
657
|
-
*/
|
|
658
|
-
SIM_EEPROM_INIT_2_FAILED = 73,
|
|
659
|
-
/**
|
|
660
|
-
* Attempt 3 to initialize the Simulated EEPROM has failed.
|
|
661
|
-
*
|
|
662
|
-
* This failure means one or both of the tokens ::TOKEN_MFG_NVDATA_VERSION or ::TOKEN_STACK_NVDATA_VERSION
|
|
663
|
-
* were incorrect and the token system failed to properly reload default tokens and reset the Simulated EEPROM.
|
|
664
|
-
*/
|
|
665
|
-
SIM_EEPROM_INIT_3_FAILED = 74,
|
|
666
|
-
/**
|
|
667
|
-
* The Simulated EEPROM is repairing itself.
|
|
668
|
-
*
|
|
669
|
-
* While there's nothing for an app to do when the SimEE is going to
|
|
670
|
-
* repair itself (SimEE has to be fully functional for the rest of the
|
|
671
|
-
* system to work), alert the application to the fact that repair
|
|
672
|
-
* is occurring. There are debugging scenarios where an app might want
|
|
673
|
-
* to know that repair is happening, such as monitoring frequency.
|
|
674
|
-
* @note Common situations will trigger an expected repair, such as
|
|
675
|
-
* using an erased chip or changing token definitions.
|
|
676
|
-
*/
|
|
677
|
-
SIM_EEPROM_REPAIRING = 77,
|
|
678
|
-
/**
|
|
679
|
-
* A fatal error has occurred while trying to write data to the Flash.
|
|
680
|
-
* The target memory attempting to be programmed is already programmed.
|
|
681
|
-
* The flash write routines were asked to flip a bit from a 0 to 1,
|
|
682
|
-
* which is physically impossible and the write was therefore inhibited.
|
|
683
|
-
* The data in the Flash cannot be trusted after this error.
|
|
684
|
-
*/
|
|
685
|
-
ERR_FLASH_WRITE_INHIBITED = 70,
|
|
686
|
-
/**
|
|
687
|
-
* A fatal error has occurred while trying to write data to the Flash and the write verification has failed.
|
|
688
|
-
* Data in the Flash cannot be trusted after this error and it is possible this error is the result of exceeding the life cycles of the Flash.
|
|
689
|
-
*/
|
|
690
|
-
ERR_FLASH_VERIFY_FAILED = 71,
|
|
691
|
-
/**
|
|
692
|
-
* A fatal error has occurred while trying to write data to the Flash possibly due to write protection or an invalid address.
|
|
693
|
-
* Data in the Flash cannot be trusted after this error and it is possible this error is the result of exceeding the life cycles of the Flash.
|
|
694
|
-
*/
|
|
695
|
-
ERR_FLASH_PROG_FAIL = 75,
|
|
696
|
-
/**
|
|
697
|
-
* A fatal error has occurred while trying to erase the Flash possibly due to write protection.
|
|
698
|
-
* Data in the Flash cannot be trusted after this error and it is possible this error is the result of exceeding the life cycles of the Flash.
|
|
699
|
-
*/
|
|
700
|
-
ERR_FLASH_ERASE_FAIL = 76,
|
|
701
|
-
/** The bootloader received an invalid message (failed attempt to go into bootloader). */
|
|
702
|
-
ERR_BOOTLOADER_TRAP_TABLE_BAD = 88,
|
|
703
|
-
/** The bootloader received an invalid message (failed attempt to go into the bootloader). */
|
|
704
|
-
ERR_BOOTLOADER_TRAP_UNKNOWN = 89,
|
|
705
|
-
/** The bootloader cannot complete the bootload operation because either an image was not found or the image exceeded memory bounds. */
|
|
706
|
-
ERR_BOOTLOADER_NO_IMAGE = 90,
|
|
707
|
-
/** The APS layer attempted to send or deliver a message and failed. */
|
|
708
|
-
DELIVERY_FAILED = 102,
|
|
709
|
-
/** This binding index is out of range for the current binding table. */
|
|
710
|
-
BINDING_INDEX_OUT_OF_RANGE = 105,
|
|
711
|
-
/** This address table index is out of range for the current address table. */
|
|
712
|
-
ADDRESS_TABLE_INDEX_OUT_OF_RANGE = 106,
|
|
713
|
-
/** An invalid binding table index was given to a function. */
|
|
714
|
-
INVALID_BINDING_INDEX = 108,
|
|
715
|
-
/** The API call is not allowed given the current state of the stack. */
|
|
716
|
-
INVALID_CALL = 112,
|
|
717
|
-
/** The link cost to a node is not known. */
|
|
718
|
-
COST_NOT_KNOWN = 113,
|
|
719
|
-
/** The maximum number of in-flight messages = i.e., ::EMBER_APS_UNICAST_MESSAGE_COUNT, has been reached. */
|
|
720
|
-
MAX_MESSAGE_LIMIT_REACHED = 114,
|
|
721
|
-
/** The message to be transmitted is too big to fit into a single over-the-air packet. */
|
|
722
|
-
MESSAGE_TOO_LONG = 116,
|
|
723
|
-
/** The application is trying to delete or overwrite a binding that is in use. */
|
|
724
|
-
BINDING_IS_ACTIVE = 117,
|
|
725
|
-
/** The application is trying to overwrite an address table entry that is in use. */
|
|
726
|
-
ADDRESS_TABLE_ENTRY_IS_ACTIVE = 118,
|
|
727
|
-
/** An attempt was made to transmit during the suspend period. */
|
|
728
|
-
TRANSMISSION_SUSPENDED = 119,
|
|
729
|
-
/** Security match. */
|
|
730
|
-
MATCH = 120,
|
|
731
|
-
/** Drop frame. */
|
|
732
|
-
DROP_FRAME = 121,
|
|
733
|
-
/** */
|
|
734
|
-
PASS_UNPROCESSED = 122,
|
|
735
|
-
/** */
|
|
736
|
-
TX_THEN_DROP = 123,
|
|
737
|
-
/** */
|
|
738
|
-
NO_SECURITY = 124,
|
|
739
|
-
/** */
|
|
740
|
-
COUNTER_FAILURE = 125,
|
|
741
|
-
/** */
|
|
742
|
-
AUTH_FAILURE = 126,
|
|
743
|
-
/** */
|
|
744
|
-
UNPROCESSED = 127,
|
|
745
|
-
/** The conversion is complete. */
|
|
746
|
-
ADC_CONVERSION_DONE = 128,
|
|
747
|
-
/** The conversion cannot be done because a request is being processed. */
|
|
748
|
-
ADC_CONVERSION_BUSY = 129,
|
|
749
|
-
/** The conversion is deferred until the current request has been processed. */
|
|
750
|
-
ADC_CONVERSION_DEFERRED = 130,
|
|
751
|
-
/** No results are pending. */
|
|
752
|
-
ADC_NO_CONVERSION_PENDING = 132,
|
|
753
|
-
/** Sleeping (for a duration) has been abnormally interrupted and exited prematurely. */
|
|
754
|
-
SLEEP_INTERRUPTED = 133,
|
|
755
|
-
/**
|
|
756
|
-
* The transmit attempt failed because the radio scheduler could not find a slot
|
|
757
|
-
* to transmit this packet in or a higher priority event interrupted it.
|
|
758
|
-
*/
|
|
759
|
-
PHY_TX_SCHED_FAIL = 135,
|
|
760
|
-
/** The transmit hardware buffer underflowed. */
|
|
761
|
-
PHY_TX_UNDERFLOW = 136,
|
|
762
|
-
/** The transmit hardware did not finish transmitting a packet. */
|
|
763
|
-
PHY_TX_INCOMPLETE = 137,
|
|
764
|
-
/** An unsupported channel setting was specified. */
|
|
765
|
-
PHY_INVALID_CHANNEL = 138,
|
|
766
|
-
/** An unsupported power setting was specified. */
|
|
767
|
-
PHY_INVALID_POWER = 139,
|
|
768
|
-
/** The requested operation cannot be completed because the radio is currently busy, either transmitting a packet or performing calibration. */
|
|
769
|
-
PHY_TX_BUSY = 140,
|
|
770
|
-
/** The transmit attempt failed because all CCA attempts indicated that the channel was busy. */
|
|
771
|
-
PHY_TX_CCA_FAIL = 141,
|
|
585
|
+
COMPUTE_MATH_UNDERFLOW = 5397,
|
|
586
|
+
/** Packet is dropped by packet-handoff callbacks */
|
|
587
|
+
ZIGBEE_PACKET_HANDOFF_DROPPED = 3073,
|
|
588
|
+
/** The APS layer attempted to send or deliver a message and failed */
|
|
589
|
+
ZIGBEE_DELIVERY_FAILED = 3074,
|
|
590
|
+
/** The maximum number of in-flight messages ::EMBER_APS_UNICAST_MESSAGE_COUNT has been reached */
|
|
591
|
+
ZIGBEE_MAX_MESSAGE_LIMIT_REACHED = 3075,
|
|
592
|
+
/** The application is trying to delete or overwrite a binding that is in use */
|
|
593
|
+
ZIGBEE_BINDING_IS_ACTIVE = 3076,
|
|
594
|
+
/** The application is trying to overwrite an address table entry that is in use */
|
|
595
|
+
ZIGBEE_ADDRESS_TABLE_ENTRY_IS_ACTIVE = 3077,
|
|
596
|
+
/** After moving, a mobile node's attempt to re-establish contact with the network failed */
|
|
597
|
+
ZIGBEE_MOVE_FAILED = 3078,
|
|
598
|
+
/** The local node ID has changed. The application can get the new node ID by calling ::sl_zigbee_get_node_id() */
|
|
599
|
+
ZIGBEE_NODE_ID_CHANGED = 3079,
|
|
600
|
+
/** The chosen security level is not supported by the stack */
|
|
601
|
+
ZIGBEE_INVALID_SECURITY_LEVEL = 3080,
|
|
602
|
+
/** An error occurred when trying to encrypt at the APS Level */
|
|
603
|
+
ZIGBEE_IEEE_ADDRESS_DISCOVERY_IN_PROGRESS = 3081,
|
|
604
|
+
/** An error occurred when trying to encrypt at the APS Level */
|
|
605
|
+
ZIGBEE_APS_ENCRYPTION_ERROR = 3082,
|
|
606
|
+
/** There was an attempt to form or join a network with security without calling ::sl_zigbee_set_initial_security_state() first */
|
|
607
|
+
ZIGBEE_SECURITY_STATE_NOT_SET = 3083,
|
|
772
608
|
/**
|
|
773
|
-
*
|
|
774
|
-
*
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
/**
|
|
793
|
-
|
|
794
|
-
/**
|
|
795
|
-
|
|
609
|
+
* There was an attempt to broadcast a key switch too quickly after broadcasting the next network key.
|
|
610
|
+
* The Trust Center must wait at least a period equal to the broadcast timeout so that all routers have a chance
|
|
611
|
+
* to receive the broadcast of the new network key
|
|
612
|
+
*/
|
|
613
|
+
ZIGBEE_TOO_SOON_FOR_SWITCH_KEY = 3084,
|
|
614
|
+
/** The received signature corresponding to the message that was passed to the CBKE Library failed verification and is not valid */
|
|
615
|
+
ZIGBEE_SIGNATURE_VERIFY_FAILURE = 3085,
|
|
616
|
+
/** The message could not be sent because the link key corresponding to the destination is not authorized for use in APS data messages */
|
|
617
|
+
ZIGBEE_KEY_NOT_AUTHORIZED = 3086,
|
|
618
|
+
/** The application tried to use a binding that has been remotely modified and the change has not yet been reported to the application */
|
|
619
|
+
ZIGBEE_BINDING_HAS_CHANGED = 3087,
|
|
620
|
+
/** The EUI of the Trust center has changed due to a successful rejoin after TC Swapout */
|
|
621
|
+
ZIGBEE_TRUST_CENTER_SWAP_EUI_HAS_CHANGED = 3088,
|
|
622
|
+
/** A Trust Center Swapout Rejoin has occurred without the EUI of the TC changing */
|
|
623
|
+
ZIGBEE_TRUST_CENTER_SWAP_EUI_HAS_NOT_CHANGED = 3089,
|
|
624
|
+
/** An attempt to generate random bytes failed because of insufficient random data from the radio */
|
|
625
|
+
ZIGBEE_INSUFFICIENT_RANDOM_DATA = 3090,
|
|
626
|
+
/** A Zigbee route error command frame was received indicating that a source routed message from this node failed en route */
|
|
627
|
+
ZIGBEE_SOURCE_ROUTE_FAILURE = 3091,
|
|
628
|
+
/** A Zigbee route error command frame was received indicating that a message sent to this node along a many-to-one route failed en route */
|
|
629
|
+
ZIGBEE_MANY_TO_ONE_ROUTE_FAILURE = 3092,
|
|
630
|
+
/** A critical and fatal error indicating that the version of the stack trying to run does not match with the chip it's running on */
|
|
631
|
+
ZIGBEE_STACK_AND_HARDWARE_MISMATCH = 3093,
|
|
632
|
+
/** The local PAN ID has changed. The application can get the new PAN ID by calling ::emberGetPanId() */
|
|
633
|
+
ZIGBEE_PAN_ID_CHANGED = 3094,
|
|
796
634
|
/** The channel has changed. */
|
|
797
|
-
|
|
635
|
+
ZIGBEE_CHANNEL_CHANGED = 3095,
|
|
798
636
|
/** The network has been opened for joining. */
|
|
799
|
-
|
|
637
|
+
ZIGBEE_NETWORK_OPENED = 3096,
|
|
800
638
|
/** The network has been closed for joining. */
|
|
801
|
-
|
|
802
|
-
/** An attempt to join or rejoin the network failed because no router beacons could be heard by the joining node. */
|
|
803
|
-
NO_BEACONS = 171,
|
|
639
|
+
ZIGBEE_NETWORK_CLOSED = 3097,
|
|
804
640
|
/**
|
|
805
641
|
* An attempt was made to join a Secured Network using a pre-configured key, but the Trust Center sent back a
|
|
806
|
-
* Network Key in-the-clear when an encrypted Network Key was required. (::EMBER_REQUIRE_ENCRYPTED_KEY)
|
|
642
|
+
* Network Key in-the-clear when an encrypted Network Key was required. (::EMBER_REQUIRE_ENCRYPTED_KEY)
|
|
807
643
|
*/
|
|
808
|
-
|
|
644
|
+
ZIGBEE_RECEIVED_KEY_IN_THE_CLEAR = 3098,
|
|
809
645
|
/** An attempt was made to join a Secured Network, but the device did not receive a Network Key. */
|
|
810
|
-
|
|
646
|
+
ZIGBEE_NO_NETWORK_KEY_RECEIVED = 3099,
|
|
811
647
|
/** After a device joined a Secured Network, a Link Key was requested (::EMBER_GET_LINK_KEY_WHEN_JOINING) but no response was ever received. */
|
|
812
|
-
|
|
813
|
-
/**
|
|
814
|
-
* An attempt was made to join a Secured Network without a pre-configured key,
|
|
815
|
-
* but the Trust Center sent encrypted data using a pre-configured key.
|
|
816
|
-
*/
|
|
817
|
-
PRECONFIGURED_KEY_REQUIRED = 175,
|
|
818
|
-
/** The passed key data is not valid. A key of all zeros or all F's are reserved values and cannot be used. */
|
|
819
|
-
KEY_INVALID = 178,
|
|
820
|
-
/** The chosen security level (the value of ::EMBER_SECURITY_LEVEL) is not supported by the stack. */
|
|
821
|
-
INVALID_SECURITY_LEVEL = 149,
|
|
822
|
-
/**
|
|
823
|
-
* An error occurred when trying to encrypt at the APS Level.
|
|
824
|
-
*
|
|
825
|
-
* To APS encrypt an outgoing packet, the sender
|
|
826
|
-
* needs to know the EUI64 of the destination. This error occurs because
|
|
827
|
-
* the EUI64 of the destination can't be determined from
|
|
828
|
-
* the short address (no entry in the neighbor, child, binding
|
|
829
|
-
* or address tables).
|
|
830
|
-
*
|
|
831
|
-
* Every time this error code is seen, note that the stack initiates an
|
|
832
|
-
* IEEE address discovery request behind the scenes. Responses
|
|
833
|
-
* to the request are stored in the trust center cache portion of the
|
|
834
|
-
* address table. Note that you need at least 1 entry allocated for
|
|
835
|
-
* TC cache in the address table plugin. Depending on the available rows in
|
|
836
|
-
* the table, newly discovered addresses may replace old ones. The address
|
|
837
|
-
* table plugin is enabled by default on the host. If you are using an SoC
|
|
838
|
-
* platform, please be sure to add the address table plugin.
|
|
839
|
-
*
|
|
840
|
-
* When customers choose to send APS messages by using short addresses,
|
|
841
|
-
* they should incorporate a retry mechanism and try again, no sooner than
|
|
842
|
-
* 2 seconds later, to resend the APS message. If the app always
|
|
843
|
-
* receives 0xBE (IEEE_ADDRESS_DISCOVERY_IN_PROGRESS) after
|
|
844
|
-
* multiple retries, that might indicate that:
|
|
845
|
-
* a) destination node is not on the network
|
|
846
|
-
* b) there are problems with the health of the network
|
|
847
|
-
* c) there may not be any space set aside in the address table for
|
|
848
|
-
* the newly discovered address - this can be rectified by reserving
|
|
849
|
-
* more entries for the trust center cache in the address table plugin
|
|
850
|
-
*/
|
|
851
|
-
IEEE_ADDRESS_DISCOVERY_IN_PROGRESS = 190,
|
|
852
|
-
/**
|
|
853
|
-
* An error occurred when trying to encrypt at the APS Level.
|
|
854
|
-
*
|
|
855
|
-
* This error occurs either because the long address of the recipient can't be
|
|
856
|
-
* determined from the short address (no entry in the binding table)
|
|
857
|
-
* or there is no link key entry in the table associated with the destination,
|
|
858
|
-
* or there was a failure to load the correct key into the encryption core.
|
|
859
|
-
*/
|
|
860
|
-
APS_ENCRYPTION_ERROR = 166,
|
|
861
|
-
/** There was an attempt to form or join a network with security without calling ::emberSetInitialSecurityState() first. */
|
|
862
|
-
SECURITY_STATE_NOT_SET = 168,
|
|
648
|
+
ZIGBEE_NO_LINK_KEY_RECEIVED = 3100,
|
|
863
649
|
/**
|
|
864
|
-
*
|
|
865
|
-
*
|
|
866
|
-
* - Trust Center's IEEE address
|
|
867
|
-
* - An existing table entry's IEEE address
|
|
868
|
-
* - An address consisting of all zeros or all F's
|
|
650
|
+
* An attempt was made to join a Secured Network without a pre-configured key, but the Trust Center sent encrypted data using a
|
|
651
|
+
* pre-configured key.
|
|
869
652
|
*/
|
|
870
|
-
|
|
871
|
-
/**
|
|
872
|
-
|
|
873
|
-
/**
|
|
874
|
-
* There was an attempt to broadcast a key switch too quickly after broadcasting the next network key.
|
|
875
|
-
* The Trust Center must wait at least a period equal to the broadcast timeout so that all routers have a chance
|
|
876
|
-
* to receive the broadcast of the new network key.
|
|
877
|
-
*/
|
|
878
|
-
TOO_SOON_FOR_SWITCH_KEY = 184,
|
|
879
|
-
/** The received signature corresponding to the message that was passed to the CBKE Library failed verification and is not valid. */
|
|
880
|
-
SIGNATURE_VERIFY_FAILURE = 185,
|
|
881
|
-
/**
|
|
882
|
-
* The message could not be sent because the link key corresponding to the destination is not authorized for use in APS data messages.
|
|
883
|
-
* APS Commands (sent by the stack) are allowed.
|
|
884
|
-
* To use it for encryption of APS data messages it must be authorized using a key agreement protocol (such as CBKE).
|
|
885
|
-
*/
|
|
886
|
-
KEY_NOT_AUTHORIZED = 187,
|
|
887
|
-
/** The security data provided was not valid, or an integrity check failed. */
|
|
888
|
-
SECURITY_DATA_INVALID = 189,
|
|
889
|
-
/** The node has not joined a network. */
|
|
890
|
-
NOT_JOINED = 147,
|
|
891
|
-
/** A message cannot be sent because the network is currently overloaded. */
|
|
892
|
-
NETWORK_BUSY = 161,
|
|
893
|
-
/** The application tried to send a message using an endpoint that it has not defined. */
|
|
894
|
-
INVALID_ENDPOINT = 163,
|
|
895
|
-
/** The application tried to use a binding that has been remotely modified and the change has not yet been reported to the application. */
|
|
896
|
-
BINDING_HAS_CHANGED = 164,
|
|
897
|
-
/** An attempt to generate random bytes failed because of insufficient random data from the radio. */
|
|
898
|
-
INSUFFICIENT_RANDOM_DATA = 165,
|
|
899
|
-
/** A Zigbee route error command frame was received indicating that a source routed message from this node failed en route. */
|
|
900
|
-
SOURCE_ROUTE_FAILURE = 169,
|
|
901
|
-
/**
|
|
902
|
-
* A Zigbee route error command frame was received indicating that a message sent to this node along a many-to-one route failed en route.
|
|
903
|
-
* The route error frame was delivered by an ad-hoc search for a functioning route.
|
|
904
|
-
*/
|
|
905
|
-
MANY_TO_ONE_ROUTE_FAILURE = 170,
|
|
906
|
-
/**
|
|
907
|
-
* A critical and fatal error indicating that the version of the
|
|
908
|
-
* stack trying to run does not match with the chip it's running on. The
|
|
909
|
-
* software (stack) on the chip must be replaced with software
|
|
910
|
-
* compatible with the chip.
|
|
911
|
-
*/
|
|
912
|
-
STACK_AND_HARDWARE_MISMATCH = 176,
|
|
913
|
-
/** An index was passed into the function that was larger than the valid range. */
|
|
914
|
-
INDEX_OUT_OF_RANGE = 177,
|
|
915
|
-
/** There are no empty entries left in the table. */
|
|
916
|
-
TABLE_FULL = 180,
|
|
917
|
-
/** The requested table entry has been erased and contains no valid data. */
|
|
918
|
-
TABLE_ENTRY_ERASED = 182,
|
|
919
|
-
/** The requested function cannot be executed because the library that contains the necessary functionality is not present. */
|
|
920
|
-
LIBRARY_NOT_PRESENT = 181,
|
|
921
|
-
/** The stack accepted the command and is currently processing the request. The results will be returned via an appropriate handler. */
|
|
922
|
-
OPERATION_IN_PROGRESS = 186,
|
|
923
|
-
/**
|
|
924
|
-
* The EUI of the Trust center has changed due to a successful rejoin.
|
|
925
|
-
* The device may need to perform other authentication to verify the new TC is authorized to take over.
|
|
926
|
-
*/
|
|
927
|
-
TRUST_CENTER_EUI_HAS_CHANGED = 188,
|
|
928
|
-
/** Trust center swapped out. The EUI has changed. */
|
|
929
|
-
TRUST_CENTER_SWAPPED_OUT_EUI_HAS_CHANGED = 188,
|
|
930
|
-
/** Trust center swapped out. The EUI has not changed. */
|
|
931
|
-
TRUST_CENTER_SWAPPED_OUT_EUI_HAS_NOT_CHANGED = 191,
|
|
932
|
-
/** NVM3 is telling the application that the initialization was aborted as no valid NVM3 page was found. */
|
|
933
|
-
NVM3_TOKEN_NO_VALID_PAGES = 192,
|
|
934
|
-
/** NVM3 is telling the application that the initialization was aborted as the NVM3 instance was already opened with other parameters. */
|
|
935
|
-
NVM3_ERR_OPENED_WITH_OTHER_PARAMETERS = 193,
|
|
936
|
-
/** NVM3 is telling the application that the initialization was aborted as the NVM3 instance is not aligned properly in memory. */
|
|
937
|
-
NVM3_ERR_ALIGNMENT_INVALID = 194,
|
|
938
|
-
/** NVM3 is telling the application that the initialization was aborted as the size of the NVM3 instance is too small. */
|
|
939
|
-
NVM3_ERR_SIZE_TOO_SMALL = 195,
|
|
940
|
-
/** NVM3 is telling the application that the initialization was aborted as the NVM3 page size is not supported. */
|
|
941
|
-
NVM3_ERR_PAGE_SIZE_NOT_SUPPORTED = 196,
|
|
942
|
-
/** NVM3 is telling the application that there was an error initializing some of the tokens. */
|
|
943
|
-
NVM3_ERR_TOKEN_INIT = 197,
|
|
944
|
-
/** NVM3 is telling the application there has been an error when attempting to upgrade SimEE tokens. */
|
|
945
|
-
NVM3_ERR_UPGRADE = 198,
|
|
946
|
-
/** NVM3 is telling the application that there has been an unknown error. */
|
|
947
|
-
NVM3_ERR_UNKNOWN = 199,
|
|
948
|
-
/**
|
|
949
|
-
* This error is reserved for customer application use.
|
|
950
|
-
* This will never be returned from any portion of the network stack or HAL.
|
|
951
|
-
*/
|
|
952
|
-
APPLICATION_ERROR_0 = 240,
|
|
953
|
-
APPLICATION_ERROR_1 = 241,
|
|
954
|
-
APPLICATION_ERROR_2 = 242,
|
|
955
|
-
APPLICATION_ERROR_3 = 243,
|
|
956
|
-
APPLICATION_ERROR_4 = 244,
|
|
957
|
-
APPLICATION_ERROR_5 = 245,
|
|
958
|
-
APPLICATION_ERROR_6 = 246,
|
|
959
|
-
APPLICATION_ERROR_7 = 247,
|
|
960
|
-
APPLICATION_ERROR_8 = 248,
|
|
961
|
-
APPLICATION_ERROR_9 = 249,
|
|
962
|
-
APPLICATION_ERROR_10 = 250,
|
|
963
|
-
APPLICATION_ERROR_11 = 251,
|
|
964
|
-
APPLICATION_ERROR_12 = 252,
|
|
965
|
-
APPLICATION_ERROR_13 = 253,
|
|
966
|
-
APPLICATION_ERROR_14 = 254,
|
|
967
|
-
APPLICATION_ERROR_15 = 255
|
|
653
|
+
ZIGBEE_PRECONFIGURED_KEY_REQUIRED = 3101,
|
|
654
|
+
/** A Zigbee EZSP error has occured. Track the origin and corresponding EzspStatus for more info. */
|
|
655
|
+
ZIGBEE_EZSP_ERROR = 3102
|
|
968
656
|
}
|
|
969
657
|
/** Status values used by EZSP. */
|
|
970
658
|
export declare enum EzspStatus {
|
|
@@ -1151,6 +839,24 @@ export declare enum EmberStackError {
|
|
|
1151
839
|
NETWORK_STATUS_BAD_KEY_SEQUENCE_NUMBER = 18,
|
|
1152
840
|
NETWORK_STATUS_UNKNOWN_COMMAND = 19
|
|
1153
841
|
}
|
|
842
|
+
export declare enum EmberGPStatus {
|
|
843
|
+
/** Success Status */
|
|
844
|
+
OK = 0,
|
|
845
|
+
/** Match Frame */
|
|
846
|
+
MATCH = 1,
|
|
847
|
+
/** Drop Frame */
|
|
848
|
+
DROP_FRAME = 2,
|
|
849
|
+
/** Frame Unprocessed */
|
|
850
|
+
UNPROCESSED = 3,
|
|
851
|
+
/** Frame Pass Unprocessed */
|
|
852
|
+
PASS_UNPROCESSED = 4,
|
|
853
|
+
/** Frame TX Then Drop */
|
|
854
|
+
TX_THEN_DROP = 5,
|
|
855
|
+
/** No Security */
|
|
856
|
+
NO_SECURITY = 6,
|
|
857
|
+
/** Security Failure */
|
|
858
|
+
AUTH_FAILURE = 7
|
|
859
|
+
}
|
|
1154
860
|
/** Type of Ember software version */
|
|
1155
861
|
export declare enum EmberVersionType {
|
|
1156
862
|
PRE_RELEASE = 0,
|
|
@@ -1162,12 +868,6 @@ export declare enum EmberVersionType {
|
|
|
1162
868
|
BETA_3 = 35,
|
|
1163
869
|
GA = 170
|
|
1164
870
|
}
|
|
1165
|
-
export declare enum EmberLeaveRequestFlags {
|
|
1166
|
-
/** Leave and rejoin. */
|
|
1167
|
-
AND_REJOIN = 128,
|
|
1168
|
-
/** Leave. */
|
|
1169
|
-
WITHOUT_REJOIN = 0
|
|
1170
|
-
}
|
|
1171
871
|
/**
|
|
1172
872
|
* For emberSetTxPowerMode and mfglibSetPower.
|
|
1173
873
|
* uint16_t
|
|
@@ -1253,13 +953,13 @@ export declare enum EmberInitialSecurityBitmask {
|
|
|
1253
953
|
* Normally this bit is NOT set and the EUI64 of the trust center is learned during the join process.
|
|
1254
954
|
* When commissioning a device to join onto an existing network that is using a trust center and without sending any messages,
|
|
1255
955
|
* this bit must be set and the field ::EmberInitialSecurityState::preconfiguredTrustCenterEui64 must be populated with the appropriate EUI64.
|
|
1256
|
-
|
|
956
|
+
*/
|
|
1257
957
|
HAVE_TRUST_CENTER_EUI64 = 64,
|
|
1258
958
|
/**
|
|
1259
959
|
* This denotes that the ::EmberInitialSecurityState::preconfiguredKey is not the actual Link Key but a Root Key known only to the Trust Center.
|
|
1260
960
|
* It is hashed with the IEEE Address of the destination device to create the actual Link Key used in encryption.
|
|
1261
961
|
* This is bit is only used by the Trust Center. The joining device need not set this.
|
|
1262
|
-
|
|
962
|
+
*/
|
|
1263
963
|
TRUST_CENTER_USES_HASHED_LINK_KEY = 132,
|
|
1264
964
|
/**
|
|
1265
965
|
* This denotes that the ::EmberInitialSecurityState::preconfiguredKey element has valid data that should be used to configure
|
|
@@ -2169,4 +1869,25 @@ export declare enum EmberGpSinkTableEntryStatus {
|
|
|
2169
1869
|
/** The proxy table entry is not in use. */
|
|
2170
1870
|
UNUSED = 255
|
|
2171
1871
|
}
|
|
1872
|
+
export declare enum EmberLeaveNetworkOption {
|
|
1873
|
+
/** Leave with no option. */
|
|
1874
|
+
WITH_NO_OPTION = 0,
|
|
1875
|
+
/** Leave with option rejoin. */
|
|
1876
|
+
WITH_OPTION_REJOIN = 32,
|
|
1877
|
+
/** Leave is requested. */
|
|
1878
|
+
IS_REQUESTED = 64
|
|
1879
|
+
}
|
|
1880
|
+
/**
|
|
1881
|
+
* Packet transmit priorities in terms of getting into the MAC queue.
|
|
1882
|
+
*
|
|
1883
|
+
* SL_802154_TRANSMIT_PRIORITY_HIGH High priority headers go on the front of the queue.
|
|
1884
|
+
* SL_802154_TRANSMIT_PRIORITY_NORMAL Normal priority headers go on the back of the queue.
|
|
1885
|
+
* SL_802154_TRANSMIT_PRIORITY_SCAN_OKAY Normally, only beacon requests and orphan notifications can be sent during a scan.
|
|
1886
|
+
* They are submitted with SCAN_OKAY and go on the front of the queue. Other packets could be submitted with this priority, but it is not recommended.
|
|
1887
|
+
*/
|
|
1888
|
+
export declare enum EmberTransmitPriority {
|
|
1889
|
+
HIGH = 0,
|
|
1890
|
+
NORMAL = 1,
|
|
1891
|
+
SCAN_OKAY = 2
|
|
1892
|
+
}
|
|
2172
1893
|
//# sourceMappingURL=enums.d.ts.map
|