Skip to content

Commit

Permalink
fix info attribute specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
XdoctorwhoZ committed Apr 5, 2024
1 parent 3964aa9 commit 13902f3
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions content/docs/platform/specifications/mqtt-panduza/core.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,18 +97,23 @@ Therefore, the payload will vary from these power supplies. The ones that suppor

This way, it is very easy for client APIs to distinguish what is allowed or not, and notify the user accordingly.

### Info Attribute
### `[PLATF_REQ_CORE_0300_00]` - Info Attribute

This attribute is special. It must be supported in read-only by all the interfaces and **must not be retained**.
This attribute is special. It **must** be supported in read-only by all the interfaces and **must not** be retained.

It **must** contain:


It contains the type of the interface, and the version of the meta driver.
- the type of the interface
- the version of the interface
- the state of the driver (run/error)
- An error string in case the state is error

```json
{
"type": "serial",
"version": "1.0"
"version": "1.0",
"state": "run",
"error": "error string",
}
```

Expand Down

0 comments on commit 13902f3

Please sign in to comment.