Difference between revisions of "RCwiproc"

From RoboJackets Wiki
Jump to navigation Jump to search
(Our Protocol)
 
(21 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
==Wireless Protocol==
 
==Wireless Protocol==
 +
The wireless protocol for the 2007 RoboCup will define the means by which the host computer and on-field robots will communicate. The wireless channel itself will be half-duplex with a single frequency being shared by the Rx and Tx modules. The host will send each robot velocity, direction, and shoot directives, at a rate of about 40-50 Hz. In such a way the enitre system (host, camera, and robot) will behave as a real-time system. Each robot will respond to these data messages with its current error status, battery voltage, wheel velocity, unique ID, and whether or not it has the ball.
  
The host will send each robot velocity, direction, and shoot directives, at a rate of about 40-50 Hz. '''(This data rate still needs to be confirmed with testing)''' In such a way the enitre system (host, camera, and robot) will behave as a real-time system. The robot will send its current error status, battery voltage, wheel velocity, unique ID, and whether or not it has the ball to the host but at the much slower rate of 10Hz.
+
==Comments==
 +
'''MOVED TO [[Talk:RCwiproc|DISCUSSION PAGE]] (discussion tab up top, or just click that link)''' [[User:ScottT|ScottT]]
  
 
==To Do==
 
==To Do==
Line 7: Line 9:
 
** <strike>UDP (User Datagram Protocol)</strike> - Dropping UDP as a choice in protocol. Would need a module that implements it already
 
** <strike>UDP (User Datagram Protocol)</strike> - Dropping UDP as a choice in protocol. Would need a module that implements it already
 
** <strike>Protocol Book</strike>
 
** <strike>Protocol Book</strike>
* Determine the rate at which to update robots - Will need to find theoretical base for this and confirm with test.
+
* <strike>Determine the rate at which to update robots - Will need to find theoretical base for this and confirm with test.<strike>
 
* <strike>Specify a custom protocol</strike> - Remeber to do Visio graph of packet structure
 
* <strike>Specify a custom protocol</strike> - Remeber to do Visio graph of packet structure
 
* <strike>Evaluate and compare UDP to a custom protocol</strike>
 
* <strike>Evaluate and compare UDP to a custom protocol</strike>
Line 21: Line 23:
 
Other considerations such as the medium are not specifically stated in the protocol but influence how the protocol is formed. Consider the difference between Wi-Fi where one router can talk to multiple devices versus communication between a wired video game controller and a console. <br>
 
Other considerations such as the medium are not specifically stated in the protocol but influence how the protocol is formed. Consider the difference between Wi-Fi where one router can talk to multiple devices versus communication between a wired video game controller and a console. <br>
 
<br>
 
<br>
As an example of a protocol consider the english language in its vocal form. The '''service''' it provides is a means of conveying thoughts thruogh the use of sound. It '''assumes''' that all the parties involved can speak and understand english, that the medium is such that the transmission of sound waves is possible, and that meaning of the '''vocabulary''' used is the same among all parties involved. Its '''vocabulary''' is made up of 26 letters that by themselves or in groups represent a set of vocal patterns generated and recieved by all the parties involved. In this abstract defintion of '''vocabulary''', it is not words but rather letters and the sounds they make that form the protocol. The basic '''format''' of the english language is such that the vocabulary of letters is formed into words, which each carry the meaning of the thought being conveyed. The procedural rules change based on the situation. Sometimes one person is communicating with a group of passive listeners, at other times several people are communicating with one person at once. There are even times (eavesdropping) where one or more parties are listening to a speaker not directly communicating to them.<br>
+
As an example of a protocol consider the english language in its vocal form. The '''service''' it provides is a means of conveying thoughts thruogh the use of sound. It '''assumes''' that all the parties involved can speak and understand english, that the medium is such that the transmission of sound waves is possible, and that meaning of the '''vocabulary''' used is the same among all parties involved. Its '''vocabulary''' is made up of 26 letters that by themselves or in groups represent a set of vocal patterns generated and recieved by all the parties involved. In this abstract defintion of '''vocabulary''', it is not words but rather letters and the sounds they make that form the protocol. The basic '''format''' of the english language is such that the vocabulary of letters is formed into words, which each carry the meaning of the thought being conveyed.  
 +
 
 +
The procedural rules change based on the situation. Sometimes one person is communicating with a group of passive listeners, at other times several people are communicating with one person at once. There are even times (eavesdropping) where one or more parties are listening to a speaker but not directly communicating with them. For each of these types of communication schemes we have developed means by which to avoid confusion and express our intent. For example in the case were multiple people are talk to the same person, the listener, who is not able to communicate with several people at once will ask each speaker to talk one at a time in some arbitray order. This method of determining who gets to speak when multiple parties wish to communicate with each other is called arbitration. Techniques for arbitration vary based on the medium and topology of a communication scheme.
 +
 
 +
Another set of procedural rules apply for situations were the information sent by the speaker is not discernable to the listener. In such cases the listener will ask the speaker to repeat what they just said or to provide clarification. Generally these methods work, but often times communication can break down if the listener continually can't discern what is being said. In extreme cases the listener might try to incorrectly discern incorrect information that he/she thought the speaker said. For these case nothing can be explicitly done in order to prevent the listener from responding to errant information, but if the information from the speaker is relatively important, the speaker can query the listener to enure that the correct information was recieved. In general this entire method is called Ack (acknowledgement) and retransmit.
 +
 
 
<br>
 
<br>
 
===Our Protocol===
 
===Our Protocol===
 +
The wireless protocol for our 2007 RoboCup team will allow the host computer to communicate with the individual robots. Messages will be transmitted, serially using a 900MHz radio transmitter/receiver pair at 57kbps. Special considerations must be made for protocol design when wireless is used as a medium. For example, wireless data, transmitted by a device at a specific frequency, can be received by any device within range, receiving at that frequency. Therefore there must be a means in the protocol of establishing which device is to be addressed in a message. For some messages though addressing is not used as the intent it to talk to all devices at once. A verbal analog to this sort of multi-cast communication is a drill sergeant commanding a platoon of solders. Another consideration must be made relating to the corruption of data. Signal noise from other devices and from broadband devices can degrade a wireless signal, creating errant data in the packet. Methods such as checksums and Cyclical Redundancy Checks (CRC) can be used to check for corrupted packets.
 +
 +
For our protocol a combination of multi-cast and addressed messages are used, with the multi-cast messages being used to communicate most of the data to the robots. The protocol is half duplex with Rx and Tx sharing the same frequency. Multi-cast data messages are sent at a set interval from the host computer, with the space between them being devoted to status/ack messages from the robots. No flow control will be implemented nor will there be any re-transmission of errant messages, in order to maintain the real-time requirements of the system.
 +
 +
Errant messages will be identified using a CRC at the end of each message. An CRC algorithm on the each Rx controller will determine if the data recieved is corrupted and will "toss out" incorrect data. The CRC will be 8 bits for the majority of messages except the data messages which will have a 16-bit CRC due to thier length.
 +
 
====Packet Structure====
 
====Packet Structure====
A vital part of our robocup team is its communication system. Therefore an effective means of sending information across this system will need to be realized with a protocol of some sort. In general our protocol needs to allow the host to command movements and actions to the robots, while allowing the robots to provide status information back to the host. The medium will be RF signals in the 900mHz range. This means that we can assume an appreciable dropped packet rate, and interfereance from other teams, and devices. Binary data clocked at 57Kbps will be our vocabulary, and the msg format will be in packets of varying length. Specifically each packet will be divided in bytes, with the first byte consisting of a know header, followed by bytes containg the msg ID, its length, who its intended for, the data being sent, and a checksum.  Below in the figure is a a detail of what each packet will look like.
+
Header Format:
 
<br>
 
<br>
 
{|  cellspacing="1"
 
{|  cellspacing="1"
 
|-
 
|-
|Byte 1||Byte 2||Byte 3||Byte 4||Bytes 5-19||Last Byte
+
! width="200" bgcolor="#909090"|Start/Flag (1 byte)
|-
+
! width="240" bgcolor="#909090"|RobotID (5 bits) / Type (3 bits)
! width="200" bgcolor="#909090"|Header (1 byte)
+
! width="280" bgcolor="#d0d0d0"|Data (0 - 137 bits)
! width="75" bgcolor="#909090"|ID (3 bits)
+
! width ="200" bgcolor="#909090"|Checksum/CRC (1 - 2 byte)
! width="125" bgcolor="#909090"|DLC (5 bits)
 
! width ="200" bgcolor="#909090"|Recipient ID (1 byte)
 
! width="280" bgcolor="#d0d0d0"|Data (0 - 15 bytes)
 
! width ="200" bgcolor="#909090"|Checksum (1 byte)
 
 
|}
 
|}
 
<br>
 
<br>
The header consists of two transitions 0 to 1 and 1 to 0 spread over the time of one byte. The ID of the msg is a unique 3-bit value the identifies the type of msg being sent. In the table below is a listing of the different msgs and thier ID's. Each msg's length is described by a 5-bit value called the DLC or data length code. Who the msg is intended for is determined by which bit is set in the Recipient ID. Bits 1-5 correspond to robots 1-5, 6 corresponds to the host and 7 means the msg is meant for all robots. The format of the data section of the packet is based on the msg being sent. In most cases it is blank but for data msgs it has the following format:
+
The header consists of a start or flag byte to indicate the start of a packet, 5 bits to identify the robot(s) being sent to (00000 for robot->host communication), and 3 bits to indicate the type of message. The types of messages can be:
<br>  
+
* Init Message
 +
* Data Message
 +
<br>
 +
For Init messages, the robot sends the init message out to each robot (1-5) in turn and waits for an ACK message. For data messages, they can either be Control messages or Data/Movement messages as specified by the first bit of the data field. Init/Data Control messages are followed by a 8 or 16 bit CRC/Checksum while the Data Movement/Data messages are followed by a 16 or 32 bit CRC/Checksum.
 +
<br>
 +
Control Message:
 
{|  cellspacing="1"
 
{|  cellspacing="1"
 
|-
 
|-
! width="250" bgcolor="#909090"|Robot 1 Data (3 bytes)
+
! bgcolor="#909090"|Flag/0 (1 bit)
! width="250" bgcolor="#909090"|Robot 2 Data (3 bytes)
+
! width="93" bgcolor="#909090"|Message Type (3 bits)
! width="250" bgcolor="#909090"|Robot 3 Data (3 bytes)
+
! width="124" bgcolor="#909090"|Errors (4 bits)
! width="250" bgcolor="#909090"|Robot 4 Data (3 bytes)
+
! width="250" bgcolor="#909090"|Checksum/CRC (8 or 16 bits)
! width="250" bgcolor="#909090"|Robot 5 Data (3 bytes)
 
 
|}
 
|}
 
<br>
 
<br>
With the format for the data for each robot being defined as:
+
Data Message:
<br>
 
 
{|  cellspacing="1"
 
{|  cellspacing="1"
 
|-
 
|-
|Byte 1||Byte 2||Byte 3
+
! bgcolor="#909090"|Flag/1 (1 bit)
|-
+
! width="250" bgcolor="#909090"|Robot 1 Data (3 bytes/24 bits)
! width="200" bgcolor="#909090"|Vx (1 byte)
+
! width="250" bgcolor="#909090"|Robot 2 Data (3 bytes/24 bits)
! width="200" bgcolor="#909090"|Vy (3 bits)
+
! width="250" bgcolor="#909090"|Robot 3 Data (3 bytes/24 bits)
! width="200" bgcolor="#909090"|Theta (5 bits)
+
! width="250" bgcolor="#909090"|Robot 4 Data (3 bytes/24 bits)
 +
! width="250" bgcolor="#909090"|Robot 5 Data (3 bytes/24 bits)
 +
! width="250" bgcolor="#909090"|Checksum/CRC (16 or 32 bits)
 
|}
 
|}
 
<br>
 
<br>
  
 +
 +
'''OUTDATED'''
 +
----
 
{| style="text-align:left; width:100%; height:300px" cellspacing="0" cellpadding="5"
 
{| style="text-align:left; width:100%; height:300px" cellspacing="0" cellpadding="5"
|+ Host to Robot Messages
+
|+ '''Host to Robot Messages'''
 
|-style="border:1px solid black; border-bottom:0px; background:#909090"
 
|-style="border:1px solid black; border-bottom:0px; background:#909090"
 
! style="border:1px solid black;border-bottom:1px"|MsgID !! style="border:1px solid black;border-bottom:0px"|ID !! style="border:1px solid black;border-bottom:0px"|ACK? !! style="border:1px solid black;border-bottom:0px"|To  
 
! style="border:1px solid black;border-bottom:1px"|MsgID !! style="border:1px solid black;border-bottom:0px"|ID !! style="border:1px solid black;border-bottom:0px"|ACK? !! style="border:1px solid black;border-bottom:0px"|To  
Line 72: Line 89:
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | Yes
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | Yes
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | Individual robots
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | Individual robots
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | 0
+
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | 1
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | None
+
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | Byte 1 Robot ID
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | Host polls for each robot individually. When this msg is recieved by a robot it responds with a status msg indicating that it is ready for action.
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | Host polls for each robot individually. When this msg is recieved by a robot it responds with a status msg indicating that it is ready for action.
 
|-
 
|-
Line 86: Line 103:
 
|-
 
|-
  
! style="border:.5px solid black; border-bottom:0px; background:#909090" | Vx Vy and Theta 
+
! style="border:.5px solid black; border-bottom:0px; background:#909090" | Data
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | 0x03
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | 0x03
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | No
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | No
Line 95: Line 112:
 
|-
 
|-
  
! style="border:.5px solid black; border-bottom:0px; background:#909090" | Stop
+
! style="border:.5px solid black; border-bottom:0px; background:#909090" | Game Reset
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | 0x04
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | 0x04
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | No
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | No
Line 101: Line 118:
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | 0
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | 0
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | None
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | None
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Stops all robot motion.
+
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Ends the main process on all robots. Reverts them back to wakeup state.
 
|-
 
|-
  
Line 109: Line 126:
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Individual robots
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Individual robots
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | 1
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | 1
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Robot Angle
+
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Robot ID (1 byte) Robot Angle (1 byte)
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Commands robot to take the shot. May be folded into msg 0x04
+
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Commands the robot with ID given to take the shot.  
 
|-
 
|-
 
! style="border:.5px solid black; border-bottom:0px; background:#909090" | Robot Stop
 
! style="border:.5px solid black; border-bottom:0px; background:#909090" | Robot Stop
Line 117: Line 134:
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Individual robots
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Individual robots
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | 0
 
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | 0
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | None
+
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Robot ID
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Commands an indivdual robot to stop.
+
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0;" | Commands an indivdual robot to stop. May not be used.
 +
|}
 +
With the format for the Data messages being defined as:
 +
<br>
 +
{|  cellspacing="1"
 +
|-
 +
|Byte 1||Byte 2||Byte 3
 +
|-
 +
! width="200" bgcolor="#909090"|Vx (1 byte)
 +
! width="200" bgcolor="#909090"|Vy (3 bits)
 +
! width="200" bgcolor="#909090"|Theta (5 bits)
 +
|}
 +
<br>
 +
<br>
 +
{| style="text-align:left; width:100%; height:100px" cellspacing="0" cellpadding="5"
 +
|+ '''Robot to Host Messages'''
 +
|-style="border:1px solid black; border-bottom:0px; background:#909090"
 +
! style="border:1px solid black;border-bottom:1px"|MsgID !! style="border:1px solid black;border-bottom:0px"|ID !! style="border:1px solid black;border-bottom:0px"|ACK? !! style="border:1px solid black;border-bottom:0px"|To
 +
!! style="border:1px solid black;border-bottom:0px"|DLC !! style="border:1px solid black;border-bottom:0px"|Data Format !! style="border:1px solid black;border-bottom:0px"|Description
 +
|-
 +
! style="border:.5px solid black; border-bottom:0px; background:#909090;" | Status
 +
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | 0xA
 +
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | No
 +
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | Host
 +
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | 3
 +
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | None
 +
| style="border:.5px solid black; border-bottom:0px; background:#d0d0d0" | Given in response to Wakeup message. Data section not fully specified, contains battery info serial number error state
 
|}
 
|}
 
<br>
 
<br>
 +
 
====Protocol Procedural Rules====
 
====Protocol Procedural Rules====
 +
When messages are being sent between the host and the team robots care must be taken to cause data collisions, message oscillations, and other errors. To prevent such events a set of procedural rules are implemented dictating when each msg is sent and what happens both before and after the messages transmission. Below is a detailed explanation of the procedural rules for each message and finally somMay be folded into msg 0x04e flow charts for events such as initial startup and stopping.
 +
 +
=====Wakeup=====
 +
As the title says this msg brings the robots out of a known "sleep" state and registers them the host controller. The motivaton for the message and the procedure it details is so that message transfer starts from a known safe state, this state being the "sleep" the state. The "sleep" state is entered once the robot is turned on and is written in firmware. In "sleep" state the robots will not talk to the host nor respond to any messages except wakeup. The procedure for waking up a team is as follows:
 +
*First the human operator feeds in the unique ID of each robot on the field. These ID numbers range from 1-10 and in fact are the IDs included in each message.
 +
*When the command is given the host sends out the wakeup msg to the robot whose ID is first in the list of IDs fed in the the operator.
 +
*If the robot with that ID is on the field it will immediately respond back to the host with a status message giving information on its health, and its unique serial number.
 +
*When the host recieved this status message it will move on the next ID in its list and transmit a wakeup message with that ID.
 +
*If the host does not recieve a status message back or the health of the robot is such that its not ready it will alert the operator and will not continue the wakeup sequence.
 +
*Once all the robots have been verified to be on the field and ready the wakeup sequence shall be considered complete and host is now ready to start a game. <br>
 +
You may wonder why the wakeup msg is sent to each robot one at a time. Even though our protocol is full-duplex it doesn't define an arbitration scheme. As work-around messages from the robots to the host are only sent when asked for by the host. In such a manner we can ensure that only one robot can talk to the host at a time, avoiding data collisions. Future implementations we see the addition of arbitration.
 +
=====GO/Start=====
 +
Once the robots on the field are found and in good order we can start a game. The GO/Start message signals the robots to begin thier main process and prepare to recieve data. The robots do not acknowledge this message since it is a broadcast message. Broadcast messages are messages sent to all robots at once, and makeup the majority of msgs sent on the wirless channel. The motivation for these message types is simplicity. Instead of sending most messages to each robot individually and flooding the wireless channel thereby increasing chances for a dropped packets we package the information in one big message. As a consequence there can be no acknowledgments to these messages due to the lack of an arbitration scheme.
 +
=====Data=====
 +
This message will be the bulk of the messages sent from on the wireless channel. It is a broadcast message for the above reasons and hence no acknowledgment is required. Each robots data values are picked off from the data section. This message can only be recieved by a robot when it is out of sleep mode.
 +
=====Game Stop=====
 +
Another broadcast message. Singals the end or stoppage of game play. When the robots are stopped they are not in sleep mode and can still communicate with the host. But since they are stopped thier internal process is no longer active and they act as "dumb" terminals.
 +
=====Shoot Ball=====
 +
As the title says this messages signals the robot whose ID it is sent to to shoot the ball, once it has rotated a given number of degrees. Since this is an individual robot message an acknowledgment is allowed and is required.
 +
=====Robot Stop=====
 +
The same as Game Stop only sent to individual robots. Since this is an individual robot message an acknowledgment is allowed and is required.
 +
=====Status=====
 +
The only message sent from the robot to the host, the status message serves as both an actual status message and as an ACK. In any case status messages are only sent was ack to messages that allow acknowledgments.
 +
  
 
<br>
 
<br>
Line 127: Line 195:
 
==Articles==
 
==Articles==
 
*[http://www.linxtechnologies.com/documents/AN-00160.pdf Linx article on protocol design]
 
*[http://www.linxtechnologies.com/documents/AN-00160.pdf Linx article on protocol design]
 +
*[http://focus-webapps.ti.com/general/docs/sitesearch/searchsite.tsp?searchTerm=serial%20RS232%20drivers&selectedTopic=1077383935&numRecords=25 TI Example wireless system design protocol and all]
 
*[http://www.mathpages.com/home/kmath458.htm Paper on the Cylical Redundancy Check error checking algorithm (CRC)]
 
*[http://www.mathpages.com/home/kmath458.htm Paper on the Cylical Redundancy Check error checking algorithm (CRC)]
 
*[http://spinroot.com/spin/Doc/Book91.html Enitre book on protocol design, a bit dated though like 1990 dated]
 
*[http://spinroot.com/spin/Doc/Book91.html Enitre book on protocol design, a bit dated though like 1990 dated]
Line 135: Line 204:
 
*[http://bbs.circuitcellar.com/phpBB2/viewtopic.php?t=2233& Circuit Cellar discussion on Manchester Encoder/Decoder]
 
*[http://bbs.circuitcellar.com/phpBB2/viewtopic.php?t=2233& Circuit Cellar discussion on Manchester Encoder/Decoder]
 
*[http://robocup.mae.cornell.edu/documentation/robocup/2002/2002EE.pdf Cornell electrical design document]
 
*[http://robocup.mae.cornell.edu/documentation/robocup/2002/2002EE.pdf Cornell electrical design document]
 +
*[http://www.ddj.com/dept/cpp/193004231 Page on coding communications protocols in C++]
  
 
==Links==
 
==Links==
 
[[RCcoms|Wireless Hompage]]
 
[[RCcoms|Wireless Hompage]]
 +
[[Category: RoboCup]]

Latest revision as of 22:07, 13 June 2018

Wireless Protocol

The wireless protocol for the 2007 RoboCup will define the means by which the host computer and on-field robots will communicate. The wireless channel itself will be half-duplex with a single frequency being shared by the Rx and Tx modules. The host will send each robot velocity, direction, and shoot directives, at a rate of about 40-50 Hz. In such a way the enitre system (host, camera, and robot) will behave as a real-time system. Each robot will respond to these data messages with its current error status, battery voltage, wheel velocity, unique ID, and whether or not it has the ball.

Comments

MOVED TO DISCUSSION PAGE (discussion tab up top, or just click that link) ScottT

To Do

  • Research protocols
    • UDP (User Datagram Protocol) - Dropping UDP as a choice in protocol. Would need a module that implements it already
    • Protocol Book
  • Determine the rate at which to update robots - Will need to find theoretical base for this and confirm with test.
  • Specify a custom protocol - Remeber to do Visio graph of packet structure
  • Evaluate and compare UDP to a custom protocol

Protocol Structure

What is a Protocol?

A protocol is a set of rules to define how two or more entities comunicate. It contains 5 basic elements:

  • A service definition - What information will the protocol provide the entities that utilize it?
  • A set of assumptions - What is assumed to in the protocol? What isn't?
  • A vocabulary - What will be the forms of data that I will use to communicate with this protocol
  • A format/encoding - How will my vocabulary coherantly fit together to form larger msgs, and cmds
  • A set of procedural rules - How will I intiate communication? How are the entities using this protocol indentied? What are thier roles?

Other considerations such as the medium are not specifically stated in the protocol but influence how the protocol is formed. Consider the difference between Wi-Fi where one router can talk to multiple devices versus communication between a wired video game controller and a console.

As an example of a protocol consider the english language in its vocal form. The service it provides is a means of conveying thoughts thruogh the use of sound. It assumes that all the parties involved can speak and understand english, that the medium is such that the transmission of sound waves is possible, and that meaning of the vocabulary used is the same among all parties involved. Its vocabulary is made up of 26 letters that by themselves or in groups represent a set of vocal patterns generated and recieved by all the parties involved. In this abstract defintion of vocabulary, it is not words but rather letters and the sounds they make that form the protocol. The basic format of the english language is such that the vocabulary of letters is formed into words, which each carry the meaning of the thought being conveyed.

The procedural rules change based on the situation. Sometimes one person is communicating with a group of passive listeners, at other times several people are communicating with one person at once. There are even times (eavesdropping) where one or more parties are listening to a speaker but not directly communicating with them. For each of these types of communication schemes we have developed means by which to avoid confusion and express our intent. For example in the case were multiple people are talk to the same person, the listener, who is not able to communicate with several people at once will ask each speaker to talk one at a time in some arbitray order. This method of determining who gets to speak when multiple parties wish to communicate with each other is called arbitration. Techniques for arbitration vary based on the medium and topology of a communication scheme.

Another set of procedural rules apply for situations were the information sent by the speaker is not discernable to the listener. In such cases the listener will ask the speaker to repeat what they just said or to provide clarification. Generally these methods work, but often times communication can break down if the listener continually can't discern what is being said. In extreme cases the listener might try to incorrectly discern incorrect information that he/she thought the speaker said. For these case nothing can be explicitly done in order to prevent the listener from responding to errant information, but if the information from the speaker is relatively important, the speaker can query the listener to enure that the correct information was recieved. In general this entire method is called Ack (acknowledgement) and retransmit.


Our Protocol

The wireless protocol for our 2007 RoboCup team will allow the host computer to communicate with the individual robots. Messages will be transmitted, serially using a 900MHz radio transmitter/receiver pair at 57kbps. Special considerations must be made for protocol design when wireless is used as a medium. For example, wireless data, transmitted by a device at a specific frequency, can be received by any device within range, receiving at that frequency. Therefore there must be a means in the protocol of establishing which device is to be addressed in a message. For some messages though addressing is not used as the intent it to talk to all devices at once. A verbal analog to this sort of multi-cast communication is a drill sergeant commanding a platoon of solders. Another consideration must be made relating to the corruption of data. Signal noise from other devices and from broadband devices can degrade a wireless signal, creating errant data in the packet. Methods such as checksums and Cyclical Redundancy Checks (CRC) can be used to check for corrupted packets.

For our protocol a combination of multi-cast and addressed messages are used, with the multi-cast messages being used to communicate most of the data to the robots. The protocol is half duplex with Rx and Tx sharing the same frequency. Multi-cast data messages are sent at a set interval from the host computer, with the space between them being devoted to status/ack messages from the robots. No flow control will be implemented nor will there be any re-transmission of errant messages, in order to maintain the real-time requirements of the system.

Errant messages will be identified using a CRC at the end of each message. An CRC algorithm on the each Rx controller will determine if the data recieved is corrupted and will "toss out" incorrect data. The CRC will be 8 bits for the majority of messages except the data messages which will have a 16-bit CRC due to thier length.

Packet Structure

Header Format:

Start/Flag (1 byte) RobotID (5 bits) / Type (3 bits) Data (0 - 137 bits) Checksum/CRC (1 - 2 byte)


The header consists of a start or flag byte to indicate the start of a packet, 5 bits to identify the robot(s) being sent to (00000 for robot->host communication), and 3 bits to indicate the type of message. The types of messages can be:

  • Init Message
  • Data Message


For Init messages, the robot sends the init message out to each robot (1-5) in turn and waits for an ACK message. For data messages, they can either be Control messages or Data/Movement messages as specified by the first bit of the data field. Init/Data Control messages are followed by a 8 or 16 bit CRC/Checksum while the Data Movement/Data messages are followed by a 16 or 32 bit CRC/Checksum.
Control Message:

Flag/0 (1 bit) Message Type (3 bits) Errors (4 bits) Checksum/CRC (8 or 16 bits)


Data Message:

Flag/1 (1 bit) Robot 1 Data (3 bytes/24 bits) Robot 2 Data (3 bytes/24 bits) Robot 3 Data (3 bytes/24 bits) Robot 4 Data (3 bytes/24 bits) Robot 5 Data (3 bytes/24 bits) Checksum/CRC (16 or 32 bits)



OUTDATED


Host to Robot Messages
MsgID ID ACK? To DLC Data Format Description
Wakeup 0x01 Yes Individual robots 1 Byte 1 Robot ID Host polls for each robot individually. When this msg is recieved by a robot it responds with a status msg indicating that it is ready for action.
Go/Start 0x02 Yes Individual robots 0 None Intiates main process on robots.
Data 0x03 No All robots 15 See below Streaming data sent to all robots in one msg.
Game Reset 0x04 No All robots 0 None Ends the main process on all robots. Reverts them back to wakeup state.
Shoot Ball 0x05 Yes Individual robots 1 Robot ID (1 byte) Robot Angle (1 byte) Commands the robot with ID given to take the shot.
Robot Stop 0x06 Yes Individual robots 0 Robot ID Commands an indivdual robot to stop. May not be used.

With the format for the Data messages being defined as:

Byte 1 Byte 2 Byte 3
Vx (1 byte) Vy (3 bits) Theta (5 bits)



Robot to Host Messages
MsgID ID ACK? To DLC Data Format Description
Status 0xA No Host 3 None Given in response to Wakeup message. Data section not fully specified, contains battery info serial number error state


Protocol Procedural Rules

When messages are being sent between the host and the team robots care must be taken to cause data collisions, message oscillations, and other errors. To prevent such events a set of procedural rules are implemented dictating when each msg is sent and what happens both before and after the messages transmission. Below is a detailed explanation of the procedural rules for each message and finally somMay be folded into msg 0x04e flow charts for events such as initial startup and stopping.

Wakeup

As the title says this msg brings the robots out of a known "sleep" state and registers them the host controller. The motivaton for the message and the procedure it details is so that message transfer starts from a known safe state, this state being the "sleep" the state. The "sleep" state is entered once the robot is turned on and is written in firmware. In "sleep" state the robots will not talk to the host nor respond to any messages except wakeup. The procedure for waking up a team is as follows:

  • First the human operator feeds in the unique ID of each robot on the field. These ID numbers range from 1-10 and in fact are the IDs included in each message.
  • When the command is given the host sends out the wakeup msg to the robot whose ID is first in the list of IDs fed in the the operator.
  • If the robot with that ID is on the field it will immediately respond back to the host with a status message giving information on its health, and its unique serial number.
  • When the host recieved this status message it will move on the next ID in its list and transmit a wakeup message with that ID.
  • If the host does not recieve a status message back or the health of the robot is such that its not ready it will alert the operator and will not continue the wakeup sequence.
  • Once all the robots have been verified to be on the field and ready the wakeup sequence shall be considered complete and host is now ready to start a game.

You may wonder why the wakeup msg is sent to each robot one at a time. Even though our protocol is full-duplex it doesn't define an arbitration scheme. As work-around messages from the robots to the host are only sent when asked for by the host. In such a manner we can ensure that only one robot can talk to the host at a time, avoiding data collisions. Future implementations we see the addition of arbitration.

GO/Start

Once the robots on the field are found and in good order we can start a game. The GO/Start message signals the robots to begin thier main process and prepare to recieve data. The robots do not acknowledge this message since it is a broadcast message. Broadcast messages are messages sent to all robots at once, and makeup the majority of msgs sent on the wirless channel. The motivation for these message types is simplicity. Instead of sending most messages to each robot individually and flooding the wireless channel thereby increasing chances for a dropped packets we package the information in one big message. As a consequence there can be no acknowledgments to these messages due to the lack of an arbitration scheme.

Data

This message will be the bulk of the messages sent from on the wireless channel. It is a broadcast message for the above reasons and hence no acknowledgment is required. Each robots data values are picked off from the data section. This message can only be recieved by a robot when it is out of sleep mode.

Game Stop

Another broadcast message. Singals the end or stoppage of game play. When the robots are stopped they are not in sleep mode and can still communicate with the host. But since they are stopped thier internal process is no longer active and they act as "dumb" terminals.

Shoot Ball

As the title says this messages signals the robot whose ID it is sent to to shoot the ball, once it has rotated a given number of degrees. Since this is an individual robot message an acknowledgment is allowed and is required.

Robot Stop

The same as Game Stop only sent to individual robots. Since this is an individual robot message an acknowledgment is allowed and is required.

Status

The only message sent from the robot to the host, the status message serves as both an actual status message and as an ACK. In any case status messages are only sent was ack to messages that allow acknowledgments.



Articles

Links

Wireless Hompage