Depending on the UART selected for communication, the following pins area available for the expansion modules to connect to:
UART | Tx pin | Rx pin |
---|---|---|
USART | 13 | 14 |
LPUART | 15 | 16 |
Each frame consists of a header (1 byte), contents (size depends on frame type) and checksum (1 byte) fields:
Header (1 byte) | Contents (0 or more bytes) | Checksum (1 byte) |
---|---|---|
Frame type | Frame payload | XOR checksum |
HEARTBEAT frames are used to maintain an idle connection. In the event of not receiving any frames within Tto, either side must cease all communications and be ready to initiate the connection again.
Header (1 byte) | Checksum (1 byte) |
---|---|
0x01 | XOR checksum |
Note that the contents field is not present (0 bytes length).
STATUS frames are used to report the status of a transaction. Every received frame MUST be confirmed by a matching STATUS response.
Header (1 byte) | Contents (1 byte) | Checksum (1 byte) |
---|---|---|
0x02 | Error code | XOR checksum |
The Error code
field SHALL have one of the following values:
Error code | Meaning |
---|---|
0x00 | OK (No error) |
0x01 | Unknown error |
0x02 | Baud rate not supported |
BAUD RATE frames are used to negotiate communication speed. The initial connection SHALL always happen at 9600 baud. The first message sent by the module MUST be a BAUD RATE frame, even if a different speed is not required.
Header (1 byte) | Contents (4 bytes) | Checksum (1 byte) |
---|---|---|
0x03 | Baud rate | XOR checksum |
If the requested baud rate is supported by the host, it SHALL respond with a STATUS frame with an OK error code, otherwise the error code SHALL be 0x02 (Baud rate not supported). Until the negotiation succeeds, the speed SHALL remain at 9600 baud. The module MAY send additional BAUD RATE frames with alternative speeds in case the initial request was refused. No other frames are allowed until the speed negotiation succeeds.
CONTROL frames are used to control various aspects of the communication and enable/disable various device features.
Header (1 byte) | Contents (1 byte) | Checksum (1 byte) |
---|---|---|
0x04 | Command | XOR checksum |
The Command
field SHALL have one of the following values:
Command | Meaning | Note |
---|---|---|
0x00 | Start RPC session | 1 |
0x01 | Stop RPC session | 2 |
0x02 | Enable OTG (5V) on GPIO | 3 |
0x03 | Disable OTG (5V) on GPIO | 3 |
Notes:
DATA frames are used to transmit arbitrary data in either direction. Each DATA frame can hold up to 64 bytes. If an RPC session is currently open, all received bytes are forwarded to it.
Header (1 byte) | Contents (1 to 65 byte(s)) | Checksum (1 byte) |
---|---|---|
0x05 | Data | XOR checksum |
The Data
field SHALL have the following structure:
Data size (1 byte) | Data (0 to 64 bytes) |
---|---|
0x00 ... 0x40 | Arbitrary data |
In order for the host to be able to detect the module, the respective feature must be enabled first. This can be done via the GUI by going to Settings → Expansion Modules
and selecting the required Listen UART
or programmatically by calling expansion_enable()
. Likewise, disabling this feature via the same GUI or by calling expansion_disable()
will result in ceasing all communications and not being able to detect any connected modules.
The communication is always initiated by the module by the means of shortly pulling the RX pin down. The host SHALL respond with a HEARTBEAT frame indicating that it is ready to receive requests. The module then MUST issue a BAUDRATE request within Tto. Failure to do so will result in the host dropping the connection and returning to its initial state.
Error detection is implemented via adding an extra checksum byte to every frame (see above).
The checksum is calculated by bitwise XOR-ing every byte in the frame (excluding the checksum byte itself), with an initial value of 0.
In the event of a detected error, the concerned side MUST cease all communications and reset to initial state. The other side will then experience a communication timeout and the connection will be re-established automatically.