-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
imagine a first serial interface (#89)
- Loading branch information
1 parent
b42c069
commit 86b7730
Showing
5 changed files
with
56 additions
and
11 deletions.
There are no files selected for viewing
14 changes: 3 additions & 11 deletions
14
content/docs/50_platform/specifications/mqtt-panduza/_index.md
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,14 +1,6 @@ | ||
--- | ||
title: "Platform Specifications" | ||
weight: 4 | ||
title: "MQTT" | ||
weight: 1 | ||
icon: "hub" | ||
bookCollapseSection: true | ||
--- | ||
|
||
# Platform Specifications | ||
|
||
Panduza core concept is the abstraction of the physical interfaces at the network level. | ||
|
||
This chapter specify this abstraction layer. | ||
|
||
This chapter is usefull if you work on the platform core features or if you work on a library for a langage. | ||
|
47 changes: 47 additions & 0 deletions
47
content/docs/50_platform/specifications/mqtt-panduza/interfaces/serial.md
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,47 @@ | ||
--- | ||
title: "Serial" | ||
weight: 3 | ||
--- | ||
|
||
A serial interface can be used to interact with any point to point serial communication adapter. | ||
|
||
Examples: | ||
|
||
- UART Adapter | ||
- RS232 Adapter | ||
|
||
This document describes the specific attributes of Serial interfaces. | ||
|
||
Please refer to [API interface](../core.md) to get a generic description of the interface mechanism. | ||
|
||
### `[PLATF_00012_00]` - Info | ||
|
||
```json | ||
{ | ||
"type": "serial", | ||
"version": "0.0.0" | ||
} | ||
``` | ||
|
||
## Attributes | ||
|
||
| Attribute name | Retain Topic | | ||
| :------------- | :----------: | | ||
| Tx | false | | ||
| Rx | false | | ||
|
||
### `[PLATF_00013_00]` - Serial Tx | ||
|
||
Bytes Stream | ||
|
||
### `[PLATF_00014_00]` - Serial Rx | ||
|
||
Bytes Stream | ||
|
||
## Changelog | ||
|
||
### Version 0.0 | ||
|
||
- Experimentations | ||
|
||
|
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,6 @@ | ||
--- | ||
title: "Annexes" | ||
weight: 1 | ||
icon: "inventory_2" | ||
bookCollapseSection: true | ||
--- |
File renamed without changes.
File renamed without changes.