Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/messages/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ scoping of the message or block:

- [pointset](pointset.md) messages deal with data point telemetry (e.g. temperature reading)
- [system](system.md) messages handle system events such as rebooting, config processing, firmware, etc...
- [gateway](../specs/gateway.md) functionality for proxying device/MQTT connections.
- [discovery](../specs/discovery.md) for discovering device and network capabilities.
- `localnet` aspects of working with various local networks.
- `blobset` handling update of device data blobs.

## Message Types

Expand Down
2 changes: 2 additions & 0 deletions docs/specs/subblocks.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ of interest (and values not relevant to any given application should be ignored)
* [`gateway`](gateway.md): How devices are connected together in a logical structure to proxy information from
legacy (non-UDMI) fieldbus protocols.
* [`discovery`](discovery.md): Raw information from on-prem discovery about on-prem configuration and setup.
* `localnet`: Aspects of working with various local networks.
* `blobset`: Handling update of device data blobs.
* `cloud`: How a device is represented or connects to cloud infrastructure (e.g. the authentication
key type).
* `update`: This is a synthetic _subFolder_ that is used for `state`/`config` _subType_ that means
Expand Down
94 changes: 94 additions & 0 deletions gencode/python/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion misc/discoverynode/src/tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,10 @@ def test_nmap():
})
)

time.sleep(30)
for _ in range(90):
if len(messages) > 1:
break
time.sleep(1)

print(len(messages))
for message in messages:
Expand Down
Loading