This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
projects:crazyflie:firmware:comm_protocol [2012-08-13 22:28] macke |
projects:crazyflie:firmware:comm_protocol [2021-06-24 16:49] (current) kimberly |
||
---|---|---|---|
Line 1: | Line 1: | ||
+ | <WRAP center round important 60%> | ||
+ | This page has deprecated and will be archived. Please go to [[https:// | ||
+ | </ | ||
====== Overview ====== | ====== Overview ====== | ||
- | ===== CRTP ===== | + | CRTP is the protocol used to communicate |
- | The CRTP (Crazy RealTime Protocol) | + | |
- | * [[comm_protocol# | + | CRTP is implemented in 3 layers: |
- | | + | |
- | | + | < |
- | * ... | + | |
+ | | ||
+ | | ||
+ | | CRTP packets handling | | ||
+ | | ||
+ | | ||
+ | | ||
+ | </ | ||
+ | |||
+ | * **CRTP Link** is responsible for transferring the packets between the copter and the PC. It will typically handles packet size and error detection. | ||
+ | * **CRTP Packet handling** delivers the packet to the right subsystem in the copter and in the PC control software. | ||
+ | * **Application/ | ||
+ | |||
+ | Implemented link drivers: | ||
+ | ^ **Link** | ||
+ | | [[comm_protocol# | ||
+ | | [[comm_protocol# | ||
+ | | [[comm_protocol# | ||
+ | |||
+ | Current port allocation: | ||
+ | ^ **Port** | ||
+ | | | ||
+ | | | ||
+ | | | ||
+ | | | ||
+ | | | ||
+ | | | ||
====== Communication ====== | ====== Communication ====== | ||
Line 13: | Line 42: | ||
7 | 7 | ||
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
- | | R | | + | | |
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
| DATA 0 | | | DATA 0 | | ||
Line 21: | Line 50: | ||
| DATA 30 | | | DATA 30 | | ||
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
- | |||
- | +--------+--------+--------+--------+--------+--....--+--------+ | ||
- | | 0xAA | 0xAA | Header | Length | Data0 | Packet | CRC32 | | ||
- | +--------+--------+--------+--------+--------+--....--+--------+ | ||
</ | </ | ||
^ **Field** ^ **Byte** ^ **Bit** ^ | ^ **Field** ^ **Byte** ^ **Bit** ^ | ||
- | | | + | | |
- | | ::: | | + | | ::: | |
- | | ::: | | + | | ::: | |
| Data | | Data | ||
Line 39: | Line 64: | ||
==== 2.4 GHz NordicSemi Radio ==== | ==== 2.4 GHz NordicSemi Radio ==== | ||
- | The wireless interface will add additional header data like CRC when sending the packet and therefore the packet sent to the wireless interface is only a CRTP packet. | + | The wireless interface will add additional header data like CRC when sending the packet and therefore the packet sent to the wireless interface is only a CRTP packet |
==== USB port ==== | ==== USB port ==== | ||
Line 45: | Line 70: | ||
==== Serial port ==== | ==== Serial port ==== | ||
+ | The serial port is configured in 115200 8N1. CRTP packets are sent and received asynchronously using the following packet format: | ||
+ | |||
< | < | ||
7 | 7 | ||
Line 52: | Line 79: | ||
| | | | ||
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
- | | R | | + | | |
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
| | | | ||
Line 62: | Line 89: | ||
| DATA 30 | | | DATA 30 | | ||
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
- | | | + | | |
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
+--------+--------+--------+--------+--------+--....--+--------+ | +--------+--------+--------+--------+--------+--....--+--------+ | ||
- | | 0xAA | 0xAA | Header | Length | Data0 | Packet | CRC32 | | + | | 0xAA | 0xAA | Header | Length | Data0 | Packet | Cksum | |
+--------+--------+--------+--------+--------+--....--+--------+ | +--------+--------+--------+--------+--------+--....--+--------+ | ||
Line 72: | Line 99: | ||
^ **Field** ^ **Byte** ^ **Bit** ^ | ^ **Field** ^ **Byte** ^ **Bit** ^ | ||
| | | | ||
- | | | + | | |
- | | ::: | | + | | ::: | |
- | | ::: | | + | | ::: | |
- | | Size | + | | Size |
- | | Data | + | | Data |
- | | | + | | Cksum | |
- | ===== Ports ===== | + | === Examples |
- | The following ports are used during | + | To send setpoints to the [[projects: |
- | ^ | + | < |
- | | [[comm_protocol# | + | 0xaa 0xaa 0x30 0x0e 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x3e |
- | | | + | </ |
- | | | + | |
- | | | + | |
- | | | + | |
- | + | ||
- | ==== Console ==== | + | |
- | This port is used as a one-way text console. Printouts using printf will be sent on this port and can be read by a receiver if connected. | + | |
+ | To ping Crazyflie: | ||
< | < | ||
- | | + | |
- | +---+---+---+---+---+---+---+---+ | + | <- 0xaa 0xaa 0xf0 0x01 0x01 0xf2 # Received from the copter |
- | | CHAR 0 | | + | |
- | +---+---+---+---+---+---+---+---+ | + | |
- | : | + | |
- | +---+---+---+---+---+---+---+---+ | + | |
- | | CHAR 30 | | + | |
- | +---+---+---+---+---+---+---+---+ | + | |
- | + | ||
- | +--------+--------+--------+--------+--------+--....--+--------+ | + | |
- | | 0xAA | 0xAA | Header | Length | Data0 | | Data30 | | + | |
- | +--------+--------+--------+--------+--------+--....--+--------+ | + | |
</ | </ | ||
- | + | ===== Ports ===== | |
- | The contents of the buffer on the copter side is sent if any of the following is fulfulled: | + | |
- | * The output buffer (of 31 bytes) is full | + | |
- | * A " | + | |
- | * A flush command as been issued | + | |
==== Logging ==== | ==== Logging ==== | ||
Line 120: | Line 127: | ||
| | | | ||
- | === Table of content access === | + | === Table of content access |
This channel is used to access the loggable variables table of content. | This channel is used to access the loggable variables table of content. | ||
Line 126: | Line 133: | ||
Each message uses an additional command byte that is followed by 0 to 31 bytes of data depending of the command. For every command byte there' | Each message uses an additional command byte that is followed by 0 to 31 bytes of data depending of the command. For every command byte there' | ||
- | The logging variables are sequentially | + | The logging variables are requested by the receiver until all variables are returned. When the variable |
- | The CRC32 is a hash of the copter' | + | The CRC32 is a hash of the copter' |
The following messages are sent from the Client to the Crazyflie: | The following messages are sent from the Client to the Crazyflie: | ||
- | ^ **Command byte** ^ **Description** | + | ^ **Request for** ^ **Byte** ^ **Description** |
- | | | + | | TOC item | 0 | 0x00 (CMD_GET_ITEM) to identify |
- | | | + | | ::: | 1 | The index of the TOC item to request |
- | | 3 | + | | TOC CRC and count | |
The following messages are sent from the Crazyflie to the Client: | The following messages are sent from the Crazyflie to the Client: | ||
- | ^ **Command byte** ^ **Byte** | + | ^ **Reply for** ^ **Byte** |
- | | 0 or 1 | | + | | TOC item | |
- | | ::: | + | | ::: |
- | | ::: | + | | ::: |
| ::: | | ::: | ||
| ::: | | ::: | ||
- | | 3 | + | | TOC CRC and count |
| ::: | | ::: | ||
- | | ::: | + | | ::: |
- | + | | ::: | 6 | |
- | < | + | | |
- | Bytes | + | |
- | +---+------------+------+----------+--------------+ | + | |
- | | + | |
- | +---+ Var ID | Type | Group | Name | | + | |
- | | 1 | | | + | |
- | +---+------------+------+---+------+--------------+ | + | |
- | | 3 | Num. Vars | + | |
- | +---+------------+----------+ | + | |
- | Bytes | + | |
- | </ | + | |
== Usage == | == Usage == | ||
Line 173: | Line 170: | ||
| | ||
| | ||
- | Reset TOC pointer | + | Request for TOC item 0 ---> |
- | Get next element | + | < |
- | | + | Request for TOC item 1 ---> |
- | | + | |
- | | + | |
- | Get next element | + | |
- | | + | Request for TOC item N-1 ---> |
- | Get next element | + | where N is Number of |
- | | + | total variables in TOC |
+ | < | ||
+ | [optional] | ||
+ | Request for TOC item N ---> | ||
+ | (or any higher) | ||
+ | < | ||
[Fetch complete] | [Fetch complete] | ||
</ | </ | ||
- | === Log settings access === | + | |
+ | === Log settings access | ||
This channel is used to access the log settings to add/ | This channel is used to access the log settings to add/ | ||
== Messages == | == Messages == | ||
The following messages are sent from the Client to the Crazyflie: | The following messages are sent from the Client to the Crazyflie: | ||
- | ^ **Command byte** ^ **Byte** | + | ^ **Request for** ^ **Byte** |
- | | 0 | + | | |
- | | ::: | + | | ::: | |
- | | ::: | + | | ::: | 2-31 | [[comm_protocol# |
- | | ::: | + | | |
- | | 1 | + | | ::: | |
- | | ::: | + | | ::: | 2-31 | [[comm_protocol# |
- | | ::: | + | | |
- | | 2 | + | | ::: | |
- | | ::: | + | | Start a log block | |
- | | 3 | + | | ::: | |
- | | ::: | + | | ::: |
- | | 4 | + | | Stop a log block | |
- | | ::: | + | | ::: | |
+ | | Reset log | ||
+ | |||
The response for all of the above messages is sent from the Crazyflie to the Client: | The response for all of the above messages is sent from the Crazyflie to the Client: | ||
^ **Byte** | ^ **Byte** | ||
| | | | ||
- | | | + | | |
| | | | ||
Line 214: | Line 220: | ||
The following format is used to identify a variable that is to be logged from the Crazyflie | The following format is used to identify a variable that is to be logged from the Crazyflie | ||
+ | Log Type represents type of value sent in packet. Logged value is converted to this type before storing into log packet. Upper bytes will be discarded if Log Type is integer and value does not fit. | ||
^ **Log Type** | ^ **Log Type** | ||
Line 225: | Line 232: | ||
| | | | ||
- | ^ **Storage Type** | + | ^ **Storage Type** |
- | | | + | | |
| | | | ||
| | | | ||
Line 235: | Line 242: | ||
| | | | ||
+ | TOC variable request (Storage type is ignored, it is taken from Crazyflie internal TOC): | ||
< | < | ||
7 | 7 | ||
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
- | | Log type | Storage type | + | | Storage type |
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
| Variable ID | | | Variable ID | | ||
Line 244: | Line 252: | ||
</ | </ | ||
+ | Arbitrary memory address request: | ||
< | < | ||
7 | 7 | ||
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
- | | Log type | + | | Storage type | Log type | |
+ | +---+---+---+---+---+---+---+---+ | ||
+ | | 0xff | | ||
+---+---+---+---+---+---+---+---+ | +---+---+---+---+---+---+---+---+ | ||
| Mem Address 0 | | | Mem Address 0 | | ||
Line 260: | Line 271: | ||
- | == List of return codes == | + | == List of return codes ( errno.h codes are used, returned values are positive ) == |
- | ^ **Error** | + | ^ **Error** |
- | | 0x00 | + | | |
- | | 0x01 | + | | |
- | | 0x02 | + | | E2BIG (7) |
- | | 0xFF | + | | |
+ | | ENOMEM (12) | No memory to allocate Log Block or Log Item | ||
== Usage == | == Usage == | ||
- | Adding a new log block to the settings: | + | Adding a new log block with id 0x0a with variable 0x55 type uint32_t and variable 0x66 type float32 |
< | < | ||
| | ||
| | ||
- | Add log packet | + | Add log block |
- | < | + | < |
[DONE] | [DONE] | ||
Packet structure: | Packet structure: | ||
- | Computer -> CF : 0x[5,1] 0x00 0x01 0x0A 0x02 0x55 | + | Computer -> CF : 0x[5,1] 0x00 0x0a 0x03 0x55 0x07 0x66 |
- | CF -> Computer : 0x[5,1] 0x00 0x55 0x00 | + | CF -> Computer : 0x[5,1] 0x00 0x0a 0x00 |
</ | </ | ||
- | Deleting an existing log block from the settings: | + | Deleting an existing log block 0x55 from the settings: |
< | < | ||
| | ||
Line 294: | Line 306: | ||
</ | </ | ||
- | === Log data access === | + | === Log data access |
- | Logging data is sent back to the copter as raw data with only the block id. This means that the lookup of what data is for what variable has to be done on the computer side. | + | Logging data is sent back to the copter as raw data with only the block id. This means that the lookup of what data is for what variable has to be done on the computer side. Log |
+ | block header contains 3 byte timestamp, its value is number of microseconds from Crazyflie system start (it will wrap around in about 16 seconds. Is is also currently based on xTaskGetTickCount, | ||
+ | |||
+ | ^ **Byte** | ||
+ | | | ||
+ | | 1-3 | Block send time timestamp in us, LSB first | | ||
+ | | 4-31 | Logged variable values, LSB first | | ||
< | < | ||
- | Adding a log block logging variable ID 0x55 at 100ms interval and of type uint16: | + | Adding a log block 0xbb at 100ms interval |
- | Computer -> CF : 0x[5,1] 0x00 0x01 0x0A 0x02 0x55 | + | Computer -> CF : 0x[5,1] 0x00 0xbb 0x02 0x55 // create logging block |
- | CF -> Computer : 0x[5,1] 0x00 0x55 0x00 | + | CF -> Computer : 0x[5,1] 0x00 0x55 0x00 // OK |
+ | Computer -> CF : 0x[5,1] 0x03 0xbb 0x0A // start sending block with 100ms interval | ||
+ | CF -> Computer : 0x[5,1] 0x03 0x55 0x00 // OK | ||
- | Receiving a log block logging variable | + | Receiving a log block 0xbb with timestamp 130.532s (0x1FDE4 ms), logging |
- | CF -> Computer : 0x[5, | + | CF -> Computer : 0x[5, |
</ | </ | ||
- | |||
==== Parameters ==== | ==== Parameters ==== | ||
- | The parameters system | + | The parameters system |
- | | **Port** | **Function** | | + | ^ Port ^ Channel |
- | | | + | | |
- | | | + | | |
- | | | + | | 2 | 2 | Parameter write | |
- | === TOC access === | + | === TOC access |
- | This ports permits | + | These messages permit |
- | | **Message ID** | **Meaning in upstream packets** | **Meaning in downstream packets** | | + | ^ |
- | | 0 | Reset TOC pointer | + | | 0 | Reset TOC pointer |
- | | 1 | Get next TOC element | + | | 1 | Get next TOC element |
- | | 3 | Get TOC CRC32 | TOC CRC32 | + | | 3 | Get TOC CRC32 |
- | The upstream ID are commands and are sent alone. The downstream | + | The upstream ID are commands and are sent alone. The downstream |
< | < | ||
Line 336: | Line 355: | ||
</ | </ | ||
- | The parameters are sequentially requested by the PC until the end. When the last parameter is reached it has the ID 0 'Last TOC element' | + | The parameters are sequentially requested by the PC until the end. When the last parameter is reached it has the ID 0 'Last TOC element' |
- | The CRC32 is a hash of the copter TOC. This is aim at implementing caching of the TOC in the PC Utils to avoid fetching the full TOC each time the copter is connected. | + | The CRC32 is a hash of the copter TOC. This is aimed at implementing caching of the TOC in the PC Utils to avoid fetching the full TOC each time the copter is connected. |
- | === Parameter read === | + | === Parameter read (Port 2 channel 1) and parameter write (Port 2 channel 2)=== |
- | **TODO** | + | |
- | === Parameter write === | + | The following messages are sent from the client to the Crazyflie: |
- | **TODO** | + | ^ |
+ | | Parameter read | | ||
+ | | | ||
+ | | ::: | ||
+ | |||
+ | The following messages are sent from the Crazyflie to the client: | ||
+ | ^ | ||
+ | | Parameter read & write | ||
+ | | ::: | ||
=== Fight control ==== | === Fight control ==== | ||
**TODO** | **TODO** | ||
- | === Link layter | + | === Link layer === |
| 3: | | 3: | ||
| 3: | | 3: | ||
| 3: | | 3: | ||
| 3: | | 3: |