Presentation is loading. Please wait.

Presentation is loading. Please wait.

CSULB EE400D TECHNICAL DOCUMENTATION ARDUINO/ARXTERRA PROGRAMMING PART II - TELEMETRY.

Similar presentations


Presentation on theme: "CSULB EE400D TECHNICAL DOCUMENTATION ARDUINO/ARXTERRA PROGRAMMING PART II - TELEMETRY."— Presentation transcript:

1 CSULB EE400D TECHNICAL DOCUMENTATION ARDUINO/ARXTERRA PROGRAMMING PART II - TELEMETRY

2 TELEMETRY DEFINITIONS The latest table of telemetry ID definitions is included in the pinouts_robot.h file. Within the Arduino IDE these telemetry ID definitions may be found under the pinouts_robot.h tab.

3 TELEMETRY ENCODING BYTE ARRAY FORMATTED INTO A PACKET Packet ID 0xCA indicates the start of a telemetry packet Packet Length is the number of bytes following minus the LRC byte. Telemetry ID is an 8-bit code identifying the sensor data contained in the packet. Depending on the sensor, the telemetry ID byte is followed by some number of bytes. Longitudinal Redundancy Check (LRC) is generated over the entire packet.

4 TELEMETRY EXAMPLE CALCULATING THE LRC BYTE One trick you can use to calculate the LRC byte for a command packet is to send the command with the LRC byte set to zero. Open the arxrobot_firmware tab and scroll to the configuration block. Turn on the debug mode, while turning off both Bluetooth and the watchdog timer.

5 TELEMETRY EXAMPLE CALCULATING THE LRC BYTE Next, send the command packet with the LRC field set to zero. Example - camera home command – Command Packet ID A5 – N = 1 – Camera Home = 4 – Parity 00 The “Telemetry ID” 0E sent by the commandDecoder() FSM, indicating an error was detected The checksum error 03 is “thrown” from state 3 of the FSM, where the LRC checksum byte is checked. The last data byte contains the LRC byte expected by the command decoder: A0. CoolTerm application

6 TELEMETRY EXAMPLE CALCULATING THE LRC BYTE Command Packet Example: camera home with correct parity We now know the correct LRC byte to send with this command (0xA0). Assuming you are in debug mode, the arxrobot program responds with telemetry packet data[0] CA = Telemetry Packet ID data[1] 02 = Packet Length N+1 data[2] 0D = Command Echo data[3] 04 = Camera Home data[4] C1 = Packet Checksum CoolTerm application

7 TELEMETRY EXAMPLE TESTING ROBOT COMMANDS Test commands locally before testing remotely removes the potential problems introduced by adding the: o Smart device (Android Phone) o Internet (the cloud) o Arxterra control panel layers. To test locally you will need a terminal application program, like CoolTermCoolTerm

8 TESTING ROBOT COMMANDS COOLTERM EXAMPLE i = 0 1 2 3 4 5 6 7 N = 1 2 3 4 5 A5 05 01 01 80 01 80 A1 MOV forward half speed sendPacket data[0] A5 = Command Packet ID data[1] 05 = Packet Length N w/o parity byte data[2] 01 = Move ID data[3] 01 = Left Motor Forward data[4] 80 = Half Speed (128/255) data[5] 01 = Right Motor Forward data[6] 80 = Half Speed (128/255) data[7] A1 = Longitudinal Redundancy Check (LRC)

9 TESTING ROBOT COMMANDS COOLTERM EXAMPLE – STEP 1: UPLOAD ARDUINO PROGRAM Plug in your Arduino (Uno, Leonardo, Mega ADK, …). Set the Board Type and Serial Port. If you are not sure what serial port is used by the Arduino 1. Open ”Devices and Printers” window from the Start Menu. 2. Left-click the Arduino icon and Select properties from the pop-up menu. 3. From the properties menu select the Hardware tab and Locate the serial port. Upload the arxrobot_firmware. See Companion PDF document for more help and troubleshooting tipsCompanion PDF

10 TESTING ROBOT COMMANDS COOLTERM EXAMPLE – STEP 2: LAUNCH AND CONFIGURE COOLTERM Launch CoolTerm

11 TESTING ROBOT COMMANDS COOLTERM EXAMPLE – STEP 3: SAVE AND CONNECT To save time in the future, save your setting and open the next time you work on your application. Open, the serial port communications between CoolTerm and the Arduino.

12 TESTING ROBOT COMMANDS COOLTERM EXAMPLE – STEP 4: SEND COMMANDS To send a command, open the Send String window from the “Connection” item on the menu bar or press CTRL-T, select Hex, and enter the command string. In the example below, I am sending the move forward at half speed command. See Companion PDF document Appendix A for more Test Cases.Companion PDF

13 TELEMETRY ADDITIONAL READING Here is the companion document to this presentation. http://web.csulb.edu/~hill/ee400d/Lectures/Technical%20Training/Arduino%20 Programming.pdf http://web.csulb.edu/~hill/ee400d/Lectures/Technical%20Training/Arduino%20 Programming.pdf


Download ppt "CSULB EE400D TECHNICAL DOCUMENTATION ARDUINO/ARXTERRA PROGRAMMING PART II - TELEMETRY."

Similar presentations


Ads by Google