This repository has been archived on 2023-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
old-monorepo/docs/communication.md

20 lines
650 B
Markdown
Raw Normal View History

2022-04-11 19:16:49 +02:00
# Heliox communication protocol
## Basic data structure
The following table describes the bit pattern for a successful communication with heliox devices.
| 0-15 | 16-22 | 23 | 24-31 | 32-(32+8*x) |
| :---------------: | :----------: | :---------------: | :-------------------: | :---------: |
| Magic Number (HX) | Message Type | Parity Bit (even) | Data Length (x Bytes) | Data |
## Message Types
2022-04-11 19:40:06 +02:00
| Code | Purpose |
| ---- | --------------- |
| 0 | Data |
| 1 | Control |
| 2 | Status Messages |
| 3 | Confirmation |
| 4 | Debug |