Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of dgps by
main.cpp@26:06f1c9d70e9f, 2014-04-22 (annotated)
- Committer:
- dylanembed123
- Date:
- Tue Apr 22 14:21:01 2014 +0000
- Revision:
- 26:06f1c9d70e9f
- Parent:
- 25:b7f861fc8ddd
- Child:
- 32:9cb7bc3fc9e0
- Child:
- 33:ad63e7013801
Move mav into handlers
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
stearnsc | 0:9c001c4e7bf4 | 1 | #include "mbed.h" |
stearnsc | 0:9c001c4e7bf4 | 2 | #include <string> |
stearnsc | 0:9c001c4e7bf4 | 3 | #include <sstream> |
dylanembed123 | 7:c75d5e5e6bfc | 4 | #include "adapt/usb.h" |
dylanembed123 | 9:da906eeac51e | 5 | #include "handle/handleCamera.h" |
dylanembed123 | 9:da906eeac51e | 6 | #include "handle/handleGPS.h" |
krobertson | 20:81d5655fecc2 | 7 | #include "handle/handleCommand.h" |
dylanembed123 | 26:06f1c9d70e9f | 8 | #include "handle/mavcommands.h" |
stearnsc | 8:28b866df62cf | 9 | |
stearnsc | 0:9c001c4e7bf4 | 10 | Serial pc(USBTX,USBRX); |
stearnsc | 0:9c001c4e7bf4 | 11 | Serial xbee(p9,p10);//tx, rx |
stearnsc | 0:9c001c4e7bf4 | 12 | Serial gps(p28,p27); |
dylanembed123 | 6:434d20e99e49 | 13 | Serial camera(p13,p14); |
stearnsc | 0:9c001c4e7bf4 | 14 | |
stearnsc | 0:9c001c4e7bf4 | 15 | typedef struct { |
stearnsc | 0:9c001c4e7bf4 | 16 | int latitude; //in .0001 minutes |
stearnsc | 0:9c001c4e7bf4 | 17 | int longitude; //in .0001 minutes |
stearnsc | 0:9c001c4e7bf4 | 18 | int altitude; //in decimeters |
stearnsc | 0:9c001c4e7bf4 | 19 | int time; //in milliseconds |
stearnsc | 0:9c001c4e7bf4 | 20 | } GpsData; |
stearnsc | 0:9c001c4e7bf4 | 21 | |
stearnsc | 8:28b866df62cf | 22 | void readSerial(Serial &s, char str[], int size) |
stearnsc | 8:28b866df62cf | 23 | { |
stearnsc | 8:28b866df62cf | 24 | for (int i = 0; i < size; i++) { |
stearnsc | 8:28b866df62cf | 25 | str[i] = s.getc(); |
stearnsc | 0:9c001c4e7bf4 | 26 | } |
stearnsc | 0:9c001c4e7bf4 | 27 | } |
stearnsc | 0:9c001c4e7bf4 | 28 | |
krobertson | 18:e72ee7aed088 | 29 | void connection_lost(){ |
krobertson | 18:e72ee7aed088 | 30 | USB::getSerial().printf("TCP connection lost!\r\n"); |
krobertson | 18:e72ee7aed088 | 31 | } |
krobertson | 18:e72ee7aed088 | 32 | |
stearnsc | 0:9c001c4e7bf4 | 33 | //sends: "$<command>*<checksum>\r\l" |
stearnsc | 8:28b866df62cf | 34 | void sendGpsCommand(string command) |
stearnsc | 8:28b866df62cf | 35 | { |
stearnsc | 0:9c001c4e7bf4 | 36 | uint8_t checksum = 0; |
stearnsc | 0:9c001c4e7bf4 | 37 | pc.printf("Sending command to gps: "); |
stearnsc | 0:9c001c4e7bf4 | 38 | gps.putc('$'); |
stearnsc | 0:9c001c4e7bf4 | 39 | pc.putc('$'); |
stearnsc | 0:9c001c4e7bf4 | 40 | char c; |
stearnsc | 8:28b866df62cf | 41 | for (int i = 0; i < command.length(); i++) { |
stearnsc | 0:9c001c4e7bf4 | 42 | c = command[i]; |
stearnsc | 0:9c001c4e7bf4 | 43 | checksum ^= c; |
stearnsc | 0:9c001c4e7bf4 | 44 | gps.putc(c); |
stearnsc | 0:9c001c4e7bf4 | 45 | pc.putc(c); |
stearnsc | 0:9c001c4e7bf4 | 46 | } |
stearnsc | 0:9c001c4e7bf4 | 47 | gps.putc('*'); |
stearnsc | 0:9c001c4e7bf4 | 48 | pc.putc('*'); |
stearnsc | 0:9c001c4e7bf4 | 49 | string checkSumString; |
stearnsc | 8:28b866df62cf | 50 | while (checksum > 0) { |
stearnsc | 0:9c001c4e7bf4 | 51 | uint8_t checksumChar = checksum & 0x0F; |
stearnsc | 8:28b866df62cf | 52 | if (checksumChar >= 10) { |
stearnsc | 0:9c001c4e7bf4 | 53 | checksumChar -= 10; |
stearnsc | 8:28b866df62cf | 54 | checksumChar += 'A'; |
stearnsc | 0:9c001c4e7bf4 | 55 | } else { |
stearnsc | 8:28b866df62cf | 56 | checksumChar += '0'; |
stearnsc | 0:9c001c4e7bf4 | 57 | } |
stearnsc | 0:9c001c4e7bf4 | 58 | checkSumString.push_back((char) checksumChar); |
stearnsc | 8:28b866df62cf | 59 | checksum = checksum >> 4; |
stearnsc | 0:9c001c4e7bf4 | 60 | } |
stearnsc | 0:9c001c4e7bf4 | 61 | |
stearnsc | 8:28b866df62cf | 62 | for (int i = checkSumString.length() - 1; i >= 0; i--) { |
stearnsc | 0:9c001c4e7bf4 | 63 | gps.putc(checkSumString[i]); |
stearnsc | 8:28b866df62cf | 64 | pc.putc(checkSumString[i]); |
stearnsc | 8:28b866df62cf | 65 | } |
stearnsc | 0:9c001c4e7bf4 | 66 | gps.putc('\r'); |
stearnsc | 0:9c001c4e7bf4 | 67 | pc.putc('\r'); |
stearnsc | 0:9c001c4e7bf4 | 68 | gps.putc('\n'); |
stearnsc | 0:9c001c4e7bf4 | 69 | pc.putc('\n'); |
stearnsc | 0:9c001c4e7bf4 | 70 | } |
stearnsc | 8:28b866df62cf | 71 | // |
stearnsc | 8:28b866df62cf | 72 | ////cs: little endian parsing |
stearnsc | 8:28b866df62cf | 73 | //int nextInt(char *data, int i) |
stearnsc | 8:28b866df62cf | 74 | //{ |
stearnsc | 8:28b866df62cf | 75 | // i |= data[i]; |
stearnsc | 8:28b866df62cf | 76 | // i |= (data[i + 1] << 8); |
stearnsc | 8:28b866df62cf | 77 | // i |= (data[i + 2] << 16); |
stearnsc | 8:28b866df62cf | 78 | // i |= (data[i + 3] << 24); |
stearnsc | 8:28b866df62cf | 79 | // return i; |
stearnsc | 8:28b866df62cf | 80 | //} |
stearnsc | 0:9c001c4e7bf4 | 81 | |
stearnsc | 8:28b866df62cf | 82 | //void handleXbeeGps() |
stearnsc | 8:28b866df62cf | 83 | //{ |
stearnsc | 8:28b866df62cf | 84 | // static bool reading = false; |
stearnsc | 8:28b866df62cf | 85 | // static char packet[16]; |
stearnsc | 8:28b866df62cf | 86 | // static int i = 0; |
stearnsc | 8:28b866df62cf | 87 | // |
stearnsc | 8:28b866df62cf | 88 | // char c = xbee.getc(); |
stearnsc | 8:28b866df62cf | 89 | // if (reading) { |
stearnsc | 8:28b866df62cf | 90 | // packet[i] = c; |
stearnsc | 8:28b866df62cf | 91 | // i++; |
stearnsc | 8:28b866df62cf | 92 | // if (i == 16) { |
stearnsc | 8:28b866df62cf | 93 | // i = 0; |
stearnsc | 8:28b866df62cf | 94 | // otherGps.latitude = nextInt(packet, 0); |
stearnsc | 8:28b866df62cf | 95 | // otherGps.longitude = nextInt(packet, 4); |
stearnsc | 8:28b866df62cf | 96 | // otherGps.altitude = nextInt(packet, 8); |
stearnsc | 8:28b866df62cf | 97 | // otherGps.time = nextInt(packet, 12); |
stearnsc | 8:28b866df62cf | 98 | // |
stearnsc | 8:28b866df62cf | 99 | // pc.printf("His GPS data: Lat: %d, Lon: %d, Alt: %d, Time:%d\r\n", |
stearnsc | 8:28b866df62cf | 100 | // otherGps.latitude, otherGps.longitude, otherGps.altitude, otherGps.time |
stearnsc | 8:28b866df62cf | 101 | // ); |
stearnsc | 8:28b866df62cf | 102 | // reading = false; |
stearnsc | 8:28b866df62cf | 103 | // } |
stearnsc | 8:28b866df62cf | 104 | // } else if (c == 'X') { |
stearnsc | 8:28b866df62cf | 105 | // reading = true; |
stearnsc | 8:28b866df62cf | 106 | // } |
stearnsc | 8:28b866df62cf | 107 | //} |
dylanembed123 | 7:c75d5e5e6bfc | 108 | |
stearnsc | 8:28b866df62cf | 109 | int main() |
stearnsc | 8:28b866df62cf | 110 | { |
dylanembed123 | 24:e65416d6de22 | 111 | |
dylanembed123 | 24:e65416d6de22 | 112 | // Start Mav test |
dylanembed123 | 25:b7f861fc8ddd | 113 | /* |
dylanembed123 | 23:497f8faa908e | 114 | USB::getSerial().printf("Wait 20\n"); |
dylanembed123 | 25:b7f861fc8ddd | 115 | wait(20); |
dylanembed123 | 25:b7f861fc8ddd | 116 | while(true){ |
dylanembed123 | 25:b7f861fc8ddd | 117 | MavCmd::get().run(); |
dylanembed123 | 25:b7f861fc8ddd | 118 | } |
dylanembed123 | 25:b7f861fc8ddd | 119 | */ |
dylanembed123 | 24:e65416d6de22 | 120 | // End mav test |
dylanembed123 | 21:c546eab07e28 | 121 | |
krobertson | 20:81d5655fecc2 | 122 | //handlers |
krobertson | 20:81d5655fecc2 | 123 | //ImageHandle imageHand; |
krobertson | 20:81d5655fecc2 | 124 | //GPSHandle gpsHand; |
krobertson | 20:81d5655fecc2 | 125 | //CommandHandle commHand; |
krobertson | 20:81d5655fecc2 | 126 | |
dylanembed123 | 13:a6d3cf2b018e | 127 | USB::getSerial().printf("Starting %d\n",sizeof(PacketStruct)); |
dylanembed123 | 14:6be57da62283 | 128 | USB::getSerial().printf("Check GPS\n"); |
krobertson | 20:81d5655fecc2 | 129 | USB::getSerial().printf("Connect to the wifly network now!\r\n"); |
krobertson | 20:81d5655fecc2 | 130 | //XBEE::getTCPInterrupt().fall(&connection_lost); |
krobertson | 20:81d5655fecc2 | 131 | //checking connection to egg before continuing |
krobertson | 19:8c1f2a2204fb | 132 | getPS().openConnection(); |
krobertson | 19:8c1f2a2204fb | 133 | getPS().closeConnection(); |
krobertson | 20:81d5655fecc2 | 134 | //Main Loop |
krobertson | 19:8c1f2a2204fb | 135 | while(1){ |
krobertson | 20:81d5655fecc2 | 136 | USB::getSerial().printf("Requesting commands from egg...\r\n"); |
krobertson | 20:81d5655fecc2 | 137 | wait_us(100000); |
krobertson | 20:81d5655fecc2 | 138 | CommandHandle::getCommandHand().run(); |
krobertson | 20:81d5655fecc2 | 139 | wait_us(100000); |
krobertson | 20:81d5655fecc2 | 140 | if(GPSHandle::getGPSHand().if_image_location()){ |
krobertson | 20:81d5655fecc2 | 141 | USB::getSerial().printf("Taking picture and sending...\r\n"); |
krobertson | 20:81d5655fecc2 | 142 | wait_us(100000); |
krobertson | 20:81d5655fecc2 | 143 | ImageHandle::getImageHand().run(); |
krobertson | 20:81d5655fecc2 | 144 | USB::getSerial().printf("sent all data\r\n"); |
krobertson | 20:81d5655fecc2 | 145 | wait_us(100000); |
dylanembed123 | 21:c546eab07e28 | 146 | } |
krobertson | 20:81d5655fecc2 | 147 | wait_us(1000000); |
krobertson | 20:81d5655fecc2 | 148 | //} |
krobertson | 18:e72ee7aed088 | 149 | |
dylanembed123 | 11:97625c27ab90 | 150 | // Run image handler |
krobertson | 20:81d5655fecc2 | 151 | //USB::getSerial().printf("Check Image\n"); |
krobertson | 20:81d5655fecc2 | 152 | // imageHand.run(); |
dylanembed123 | 11:97625c27ab90 | 153 | // Run GPS handler |
krobertson | 20:81d5655fecc2 | 154 | // USB::getSerial().printf("Check GPS\n"); |
krobertson | 20:81d5655fecc2 | 155 | //gpsHand.run(); |
krobertson | 20:81d5655fecc2 | 156 | //USB::getSerial().printf("GPS Time: %f\n",DH::Locs().getC().getTime()); |
dylanembed123 | 15:e3e03a9df89e | 157 | // Read packet |
krobertson | 20:81d5655fecc2 | 158 | //USB::getSerial().printf("Read Input\n"); |
dylanembed123 | 16:4f5d20b87dc3 | 159 | //PacketStruct* pack=getPS().lastValid;//getPS().getNextPacket(); |
dylanembed123 | 16:4f5d20b87dc3 | 160 | //if(pack!=NULL){ |
dylanembed123 | 16:4f5d20b87dc3 | 161 | // USB::getSerial().printf("Received Type: %d\n",pack->type); |
dylanembed123 | 16:4f5d20b87dc3 | 162 | // if(pack->type==PT_REQLOC){ |
krobertson | 20:81d5655fecc2 | 163 | //if(getPS().outputDevice.readable()>0){ |
krobertson | 20:81d5655fecc2 | 164 | // char input=getPS().outputDevice.getc(); |
krobertson | 20:81d5655fecc2 | 165 | // //if(getPS().outputDevice.getc()=='A'){ |
krobertson | 20:81d5655fecc2 | 166 | // // Send location |
krobertson | 20:81d5655fecc2 | 167 | // unsigned int sID=getPS().getSuperID(); |
krobertson | 20:81d5655fecc2 | 168 | // getPS().sendPacket(0,NULL,0,PT_EMPTY); |
krobertson | 20:81d5655fecc2 | 169 | // getPS().sendPacket(sID,NULL,0,PT_SENDLOC); |
krobertson | 20:81d5655fecc2 | 170 | // getPS().sendPacket(sID,(char*)(&DH::Locs().getC().getLoc()),sizeof(DataLocation)); |
krobertson | 20:81d5655fecc2 | 171 | // getPS().sendPacket(sID,NULL,0,PT_END); |
krobertson | 20:81d5655fecc2 | 172 | // //} |
krobertson | 20:81d5655fecc2 | 173 | // } |
dylanembed123 | 11:97625c27ab90 | 174 | } |
dylanembed123 | 7:c75d5e5e6bfc | 175 | /// Main Loop |
krobertson | 20:81d5655fecc2 | 176 | // while(true) { |
krobertson | 20:81d5655fecc2 | 177 | // gps.baud(57600); |
krobertson | 20:81d5655fecc2 | 178 | // xbee.baud(9600); |
krobertson | 20:81d5655fecc2 | 179 | // pc.baud(57600); |
krobertson | 20:81d5655fecc2 | 180 | // |
krobertson | 20:81d5655fecc2 | 181 | // sendGpsCommand("PMTK301,1"); |
krobertson | 20:81d5655fecc2 | 182 | // while(true) { |
krobertson | 20:81d5655fecc2 | 183 | // pc.putc(gps.getc()); |
krobertson | 20:81d5655fecc2 | 184 | // } |
dylanembed123 | 9:da906eeac51e | 185 | //gps.attach(&handleGpsData, Serial::RxIrq); |
dylanembed123 | 9:da906eeac51e | 186 | //xbee.attach(&handleXbeeGps, Serial::RxIrq)//; |
krobertson | 20:81d5655fecc2 | 187 | //} |
dylanembed123 | 9:da906eeac51e | 188 | } |