-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wirepas Interoperability #62
Open
E-Heerschap
wants to merge
3
commits into
wirepas:master
Choose a base branch
from
E-Heerschap:symbiotech-interop
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,25 @@ | ||
# This is an example file to customize a node running the provisioning joining node appliation | ||
# using the ExtendedUID method. | ||
|
||
# Hex array must start with 0x otherwise it is treated as a string. | ||
|
||
# Format is: | ||
# | ||
# provisioning : | ||
# uid : Ex: test_node | ||
# factory_key : (32 bytes string, [0:15 Auth key][16:31 Enc Key]) Needed for sercured method. | ||
# method : (Unsecured:0 or Secured:1) Ex: 0 | ||
# device_uid: (16 bytes string, Representing the UID of the device to be provisioned) | ||
# device_uid_type: (1 byte string, Representing the UID type of device_uid) | ||
# authenticator_uid: (16 bytes string, Representing the UID of the authenticator) | ||
# authenticator_uid_type: (1 byte string, Representing the UID type of authenticator_uid) | ||
# Instead of specifying uid components individually, you can specify the whole uid as follows: | ||
# uid: (34 bytes string, [0:1 device_uid_type][1:16 device_uid][16:17 authenticator_uid_type][17:33 authenticator_uid]) | ||
# factory_key : (32 bytes string, [0:15 Auth key][16:31 Enc Key]) Needed for secured method. | ||
# method : (Unsecured:0, Secured:1, Extended:3) Ex: 0 | ||
|
||
provisioning: | ||
uid: test_node | ||
uid: 0x01 0xb3 0x43 0x33 0x00 0x93 0x81 0x08 0x4a 0x8d 0xb3 0xaa 0x9e 0x53 0xd2 0x2a 0x1e 0x01 0x7e 0x71 0xe5 0xd7 0x22 0xef 0x0f 0x4b 0xa8 0x7d 0x44 0xd4 0xe0 0xe5 0xb5 0x7d | ||
node_uid: 0x7e 0x71 0xe5 0xd7 0x22 0xef 0x0f 0x4b 0xa8 0x7d 0x44 0xd4 0xe0 0xe5 0xb5 0x7d | ||
node_uid_type: 0x01 | ||
authenticator_uid: 0xb3 0x43 0x33 0x00 0x93 0x81 0x08 0x4a 0x8d 0xb3 0xaa 0x9e 0x53 0xd2 0x2a 0x1e | ||
authenticator_uid_type: 0x01 | ||
factory_key : 0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0X09 0X0A 0X0B 0X0C 0X0D 0X0E 0X0F 0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0X09 0X0A 0X0B 0X0C 0X0D 0X0E 0X0F | ||
method: 1 | ||
method: 0x03 |
14 changes: 14 additions & 0 deletions
14
source/unitary_apps/provisioning_joining_node/config_insecure.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# This is an example file to customize a node running the provisioning joining node appliation | ||
# using the insecure method. | ||
|
||
# Hex array must start with 0x otherwise it is treated as a string. | ||
|
||
# Format is: | ||
# | ||
# provisioning : | ||
# uid: (bytes string, less than 79 bytes long) | ||
# method : (Unsecured:0, Secured:1, Extended:3) Ex: 0 | ||
|
||
provisioning: | ||
uid: 0x41 0xb1 0x85 0x7a 0x0f 0xb6 0xb1 0x48 0xa5 0xe4 0xb9 0xb6 0x03 0x53 0x1b 0x3b | ||
method: 0x00 |
16 changes: 16 additions & 0 deletions
16
source/unitary_apps/provisioning_joining_node/config_secure.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# This is an example file to customize a node running the provisioning joining node appliation | ||
# using the secure method. | ||
|
||
# Hex array must start with 0x otherwise it is treated as a string. | ||
|
||
# Format is: | ||
# | ||
# provisioning : | ||
# uid: (bytes string, less than 79 bytes long) | ||
# factory_key : (32 bytes string, [0:15 Auth key][16:31 Enc Key]) Needed for secured method. | ||
# method : (Unsecured:0, Secured:1, Extended:3) Ex: 0 | ||
|
||
provisioning: | ||
uid: 0x58 0xc8 0x12 0xad 0x37 0xe8 0x36 0x4a 0xa1 0x1f 0x1c 0xbc 0x63 0x3e 0x8e 0x34 | ||
factory_key : 0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0X09 0X0A 0X0B 0X0C 0X0D 0X0E 0X0F 0x00 0x01 0x02 0x03 0x04 0x05 0x06 0x07 0x08 0X09 0X0A 0X0B 0X0C 0X0D 0X0E 0X0F | ||
method: 0x01 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch for the max in case param is 0 !