car using PID from centre line

Dependencies:   FRDM-TFC mbed CBuffer XBEE mbed_angular_speed motor2 MMA8451Q

Fork of KL25Z_Camera_Test by GDP 4

Committer:
lh14g13
Date:
Thu Jan 12 11:06:41 2017 +0000
Revision:
33:0fc789c09694
Parent:
32:6829684f8c4d
Child:
36:7f482c048387
added comments for tests

Who changed what in which revision?

UserRevisionLine numberNew contents of line
maximusismax 8:7c5e6b1e7aa5 1 //Autonomous Car GDP controller
maximusismax 8:7c5e6b1e7aa5 2 //Written by various group members
maximusismax 8:7c5e6b1e7aa5 3 //Commented & cleaned up by Max/Adam
maximusismax 8:7c5e6b1e7aa5 4
maximusismax 8:7c5e6b1e7aa5 5 //To-do
maximusismax 8:7c5e6b1e7aa5 6 // -Change xbee transmission to non-blocking
maximusismax 8:7c5e6b1e7aa5 7 // -Improve start/stop detection and resultant action (setting PID values?)
maximusismax 8:7c5e6b1e7aa5 8
maximusismax 8:7c5e6b1e7aa5 9 #include <stdarg.h>
maximusismax 8:7c5e6b1e7aa5 10 #include <stdio.h>
maximusismax 8:7c5e6b1e7aa5 11
maximusismax 0:566127ca8048 12 #include "mbed.h"
maximusismax 0:566127ca8048 13 #include "TFC.h"
FatCookies 4:4afa448c9cce 14 #include "XBEE.h"
FatCookies 9:aa2ce38dec6b 15 #include "angular_speed.h"
FatCookies 14:13085e161dd1 16 #include "main.h"
FatCookies 12:da96e2f87465 17 #include "motor.h"
maximusismax 8:7c5e6b1e7aa5 18
FatCookies 17:6ae90788cc2b 19 // Serial
FatCookies 17:6ae90788cc2b 20 #if USE_COMMS
FatCookies 17:6ae90788cc2b 21 Serial pc(PTD3,PTD2);
FatCookies 17:6ae90788cc2b 22 XBEE xb(&pc);
FatCookies 17:6ae90788cc2b 23 #endif
FatCookies 3:87a5122682fa 24
FatCookies 17:6ae90788cc2b 25 // PID Timer
FatCookies 3:87a5122682fa 26 Timer t;
FatCookies 4:4afa448c9cce 27
FatCookies 17:6ae90788cc2b 28 //Speed Sensors interupts and timers
FatCookies 9:aa2ce38dec6b 29 InterruptIn leftHallSensor(D0);
FatCookies 9:aa2ce38dec6b 30 InterruptIn rightHallSensor(D2);
FatCookies 9:aa2ce38dec6b 31 Timer t1;
FatCookies 9:aa2ce38dec6b 32 Timer t2;
FatCookies 9:aa2ce38dec6b 33
lh14g13 32:6829684f8c4d 34 //testing timer for laptimes
FatCookies 27:627d67e3b9b0 35 Timer lapTimer;
FatCookies 16:81cdffd8c5d5 36
FatCookies 21:0b69fada7c5f 37
maximusismax 0:566127ca8048 38 int main() {
maximusismax 8:7c5e6b1e7aa5 39 //Set up TFC driver stuff
maximusismax 0:566127ca8048 40 TFC_Init();
FatCookies 17:6ae90788cc2b 41 ALIGN_SERVO;
FatCookies 13:4e77264f254a 42
FatCookies 17:6ae90788cc2b 43 #if USE_COMMS
FatCookies 17:6ae90788cc2b 44 //Setup baud rate for serial link, do not change!
FatCookies 17:6ae90788cc2b 45 pc.baud(BAUD_RATE);
FatCookies 17:6ae90788cc2b 46 #endif
maximusismax 0:566127ca8048 47
maximusismax 8:7c5e6b1e7aa5 48 //Initialise/reset PID variables
maximusismax 8:7c5e6b1e7aa5 49 initVariables();
FatCookies 9:aa2ce38dec6b 50 initSpeedSensors();
FatCookies 12:da96e2f87465 51
maximusismax 0:566127ca8048 52 while(1) {
FatCookies 3:87a5122682fa 53
FatCookies 17:6ae90788cc2b 54 #if USE_COMMS
FatCookies 17:6ae90788cc2b 55 handleComms();
FatCookies 17:6ae90788cc2b 56 #endif
maximusismax 8:7c5e6b1e7aa5 57
maximusismax 8:7c5e6b1e7aa5 58 //If we have an image ready
FatCookies 13:4e77264f254a 59 if(TFC_LineScanImageReady>0) {
FatCookies 13:4e77264f254a 60 /* Find the bounds of the track and calculate how close we are to
FatCookies 13:4e77264f254a 61 * the centre */
FatCookies 17:6ae90788cc2b 62 servo_pid.measured_value = findCentreValue(CLOSE_CAMERA, left, right);
maximusismax 8:7c5e6b1e7aa5 63
FatCookies 21:0b69fada7c5f 64 // Check if car is at the stop line
FatCookies 21:0b69fada7c5f 65 handleStartStop();
FatCookies 21:0b69fada7c5f 66
FatCookies 27:627d67e3b9b0 67 #if USE_COMMS
FatCookies 27:627d67e3b9b0 68 // Send the line scan image over serial
FatCookies 27:627d67e3b9b0 69 sendImage();
FatCookies 27:627d67e3b9b0 70 #endif
FatCookies 21:0b69fada7c5f 71
FatCookies 21:0b69fada7c5f 72
FatCookies 21:0b69fada7c5f 73 //Reset image ready flag
FatCookies 21:0b69fada7c5f 74 TFC_LineScanImageReady=0;
lh14g13 19:65f0b6febc23 75
FatCookies 17:6ae90788cc2b 76 // Slow down, adjust PID values and enable differential before corners.
FatCookies 21:0b69fada7c5f 77 //handleCornering();
FatCookies 17:6ae90788cc2b 78
FatCookies 13:4e77264f254a 79 // Run the PID controllers and adjust steering/motor accordingly
maximusismax 8:7c5e6b1e7aa5 80 PIDController();
maximusismax 8:7c5e6b1e7aa5 81
FatCookies 21:0b69fada7c5f 82
FatCookies 21:0b69fada7c5f 83
FatCookies 21:0b69fada7c5f 84
FatCookies 17:6ae90788cc2b 85 #if USE_COMMS
FatCookies 17:6ae90788cc2b 86 // Send the wheel speeds over serial
FatCookies 17:6ae90788cc2b 87 sendSpeeds();
FatCookies 17:6ae90788cc2b 88 #endif
FatCookies 13:4e77264f254a 89
FatCookies 21:0b69fada7c5f 90
maximusismax 8:7c5e6b1e7aa5 91
FatCookies 15:ccde02f96449 92
FatCookies 21:0b69fada7c5f 93
maximusismax 8:7c5e6b1e7aa5 94 }
maximusismax 8:7c5e6b1e7aa5 95 }
maximusismax 8:7c5e6b1e7aa5 96 }
maximusismax 8:7c5e6b1e7aa5 97
FatCookies 17:6ae90788cc2b 98 void initVariables() {
FatCookies 17:6ae90788cc2b 99 // Initialise three PID controllers for the servo and each wheel.
FatCookies 17:6ae90788cc2b 100 initPID(&servo_pid, 2.2f, 0.6f, 0.f);
FatCookies 21:0b69fada7c5f 101 initPID(&left_motor_pid, 0.01f, 0.f, 0.f);
FatCookies 21:0b69fada7c5f 102 initPID(&right_motor_pid, 0.01f, 0.f, 0.f);
FatCookies 17:6ae90788cc2b 103
lh14g13 19:65f0b6febc23 104 right_motor_pid.desired_value=0;
lh14g13 19:65f0b6febc23 105 left_motor_pid.desired_value=0;
lh14g13 19:65f0b6febc23 106
lh14g13 19:65f0b6febc23 107 // intialise the maximum speed interms of the angular speed.
FatCookies 17:6ae90788cc2b 108 valBufferIndex = 0;
lh14g13 19:65f0b6febc23 109 speed = 50;
FatCookies 13:4e77264f254a 110
FatCookies 17:6ae90788cc2b 111 //Start stop
FatCookies 17:6ae90788cc2b 112 startstop = 0;
FatCookies 17:6ae90788cc2b 113 seen = false;
FatCookies 17:6ae90788cc2b 114
FatCookies 17:6ae90788cc2b 115 // Turning
FatCookies 17:6ae90788cc2b 116 turning = 0;
FatCookies 17:6ae90788cc2b 117 keepTurning = 0;
FatCookies 17:6ae90788cc2b 118 slow = false;
FatCookies 20:ed954836d028 119
FatCookies 20:ed954836d028 120 wL = 0;
FatCookies 20:ed954836d028 121 wR = 0;
FatCookies 20:ed954836d028 122 prevL = 0;
FatCookies 20:ed954836d028 123 prevR = 0;
maximusismax 8:7c5e6b1e7aa5 124 }
maximusismax 8:7c5e6b1e7aa5 125
FatCookies 13:4e77264f254a 126 void initPID(pid_instance* pid, float Kp, float Ki, float Kd) {
FatCookies 17:6ae90788cc2b 127 pid->Kp = Kp;
FatCookies 13:4e77264f254a 128 pid->Ki = Ki;
FatCookies 13:4e77264f254a 129 pid->Kd = Kd;
FatCookies 13:4e77264f254a 130 pid->dt = 0;
FatCookies 13:4e77264f254a 131 pid->p_error = 0;
FatCookies 13:4e77264f254a 132 pid->pid_error = 0;
FatCookies 13:4e77264f254a 133 pid->integral = 0;
FatCookies 13:4e77264f254a 134 pid->measured_value = 0;
FatCookies 13:4e77264f254a 135 pid->desired_value = 0;
FatCookies 13:4e77264f254a 136 pid->derivative = 0;
FatCookies 13:4e77264f254a 137 }
FatCookies 13:4e77264f254a 138
FatCookies 29:b5b31256572b 139 bool leftSeen;
FatCookies 29:b5b31256572b 140 bool rightSeen;
maximusismax 31:1a06c9e1985e 141
maximusismax 31:1a06c9e1985e 142 //Function which calcuates how far to the left/right of the centre of the track the car is
maximusismax 31:1a06c9e1985e 143 //Takes data from either camera, and passes some variables by reference, which will hold
maximusismax 31:1a06c9e1985e 144 //the indices holding the locations of the left and right edges of the track
FatCookies 17:6ae90788cc2b 145 inline float findCentreValue(volatile uint16_t * cam_data, uint8_t &l, uint8_t &r) {
FatCookies 17:6ae90788cc2b 146
maximusismax 31:1a06c9e1985e 147 diff = 0; //Holds difference in intensity between consecutive pixels
maximusismax 31:1a06c9e1985e 148 prev = -1; //Holds index of last inspected pixel
FatCookies 29:b5b31256572b 149
maximusismax 31:1a06c9e1985e 150 //Used for crossroads navigation, holds info on which edges of the track are observed
FatCookies 29:b5b31256572b 151 leftSeen = false;
FatCookies 29:b5b31256572b 152 rightSeen = false;
maximusismax 31:1a06c9e1985e 153
maximusismax 31:1a06c9e1985e 154 //Starting in the middle index, step left, inspecting the the edge of the track
FatCookies 17:6ae90788cc2b 155 for(i = 63; i > 0; i--) {
oj3g13 26:f3d770f3eda1 156 curr_left = (uint8_t)(cam_data[i] >> 4) & 0xFF;
FatCookies 17:6ae90788cc2b 157 diff = prev - curr_left;
maximusismax 31:1a06c9e1985e 158 //Check incorporates a combination of looking at the difference in intensities
maximusismax 31:1a06c9e1985e 159 //and whether the pixels intensity is less than a threshold, corresponding to the black edge
FatCookies 17:6ae90788cc2b 160 if(abs(diff) >= CAM_DIFF && curr_left <= CAM_THRESHOLD && prev != -1) {
maximusismax 31:1a06c9e1985e 161 l = i; //Record the index where the edge is observed
FatCookies 29:b5b31256572b 162 leftSeen = true;
FatCookies 17:6ae90788cc2b 163 break;
FatCookies 17:6ae90788cc2b 164 }
maximusismax 31:1a06c9e1985e 165 prev = curr_left; //Update previous value for the loop
FatCookies 17:6ae90788cc2b 166 }
maximusismax 8:7c5e6b1e7aa5 167
FatCookies 17:6ae90788cc2b 168 prev = -1;
maximusismax 31:1a06c9e1985e 169 //As before, start in the middle but this time step rightwards in the image
FatCookies 17:6ae90788cc2b 170 for(i = 64; i < 128; i++) {
oj3g13 26:f3d770f3eda1 171 curr_right = (uint8_t)(cam_data[i] >> 4) & 0xFF;
FatCookies 17:6ae90788cc2b 172 int diff = prev - curr_right;
FatCookies 17:6ae90788cc2b 173 if(abs(diff) >= CAM_DIFF && curr_right <= CAM_THRESHOLD && prev != -1) {
FatCookies 17:6ae90788cc2b 174 r = i;
FatCookies 29:b5b31256572b 175 rightSeen = true;
FatCookies 17:6ae90788cc2b 176 break;
FatCookies 17:6ae90788cc2b 177 }
FatCookies 17:6ae90788cc2b 178 prev = curr_right;
FatCookies 17:6ae90788cc2b 179 }
FatCookies 17:6ae90788cc2b 180
maximusismax 31:1a06c9e1985e 181 //If both edges are not visible, we are likely in a crossroads
FatCookies 29:b5b31256572b 182 if(!rightSeen && !leftSeen) {
FatCookies 29:b5b31256572b 183 sendString("lost edges");
maximusismax 31:1a06c9e1985e 184 ALIGN_SERVO; //Straighten wheels so we go straight through the crossroads
maximusismax 31:1a06c9e1985e 185 servo_pid.integral = 0;
FatCookies 29:b5b31256572b 186 }
FatCookies 29:b5b31256572b 187
maximusismax 31:1a06c9e1985e 188 //Calculate how left/right from the centre line we are
FatCookies 17:6ae90788cc2b 189 return (64 - ((l+r)/2))/64.f;
FatCookies 13:4e77264f254a 190 }
FatCookies 13:4e77264f254a 191
maximusismax 31:1a06c9e1985e 192 //Unused function currently
maximusismax 31:1a06c9e1985e 193 //Was used to establish whether we are in a corner, by inspecting a buffer of
maximusismax 31:1a06c9e1985e 194 //centre line values
FatCookies 17:6ae90788cc2b 195 inline void handleCornering() {
FatCookies 12:da96e2f87465 196
maximusismax 31:1a06c9e1985e 197 //Get current value of how left/right of centre line we are on the track
FatCookies 17:6ae90788cc2b 198 float lookaheadMeasuredValue = findCentreValue(LOOKAHEAD_CAMERA, farLeft, farRight);
FatCookies 15:ccde02f96449 199
FatCookies 13:4e77264f254a 200 measuredValBuffer[frame_counter % 64] = servo_pid.measured_value;
FatCookies 13:4e77264f254a 201
FatCookies 13:4e77264f254a 202 int count = 0;
FatCookies 13:4e77264f254a 203 for(i = 0; i < 10; i++) {
maximusismax 31:1a06c9e1985e 204 //Step through the buffer, using modulus operator
FatCookies 13:4e77264f254a 205 float val = abs(measuredValBuffer[(frame_counter - i) % 64]);
maximusismax 31:1a06c9e1985e 206 if(val > 0.09) { //If the value exceeds a certain value (obtained experimentally), we are in a corner
FatCookies 13:4e77264f254a 207 count++;
FatCookies 13:4e77264f254a 208 }
FatCookies 13:4e77264f254a 209 }
FatCookies 12:da96e2f87465 210
FatCookies 29:b5b31256572b 211 /*if(!turning && abs(lookaheadMeasuredValue) > 0.11f){
FatCookies 15:ccde02f96449 212 TFC_SetMotorPWM(0.4,0.4);
FatCookies 15:ccde02f96449 213 }
FatCookies 29:b5b31256572b 214 */
FatCookies 15:ccde02f96449 215
FatCookies 29:b5b31256572b 216 if(false) {
lh14g13 18:0095a3a8f8e4 217
lh14g13 18:0095a3a8f8e4 218 //default
lh14g13 18:0095a3a8f8e4 219 //TFC_SetMotorPWM(0.4,0.4);
lh14g13 18:0095a3a8f8e4 220
lh14g13 19:65f0b6febc23 221 //dutyCycleCorner(speed,servo_pid.output);
lh14g13 18:0095a3a8f8e4 222
lh14g13 32:6829684f8c4d 223
lh14g13 18:0095a3a8f8e4 224 //dutyCycleCorner(float cornerspeed, servo_pid.output);
lh14g13 18:0095a3a8f8e4 225 //dutyCycleCorner(speed, servo_pid.output);
lh14g13 32:6829684f8c4d 226 // This activates the electronic differential so that it runs whilst cornering.
lh14g13 32:6829684f8c4d 227 // this changes the desired desired speed of each of the wheels according to the angle of the servo.
FatCookies 29:b5b31256572b 228 sensorCorner(left_motor_pid.desired_value, right_motor_pid.desired_value , servo_pid.output, speed);
FatCookies 14:13085e161dd1 229 }
FatCookies 14:13085e161dd1 230
FatCookies 29:b5b31256572b 231 /*
FatCookies 13:4e77264f254a 232 if(abs(servo_pid.measured_value) > 0.11f){
FatCookies 15:ccde02f96449 233 if(!turning) {
FatCookies 13:4e77264f254a 234 turning = 1;
FatCookies 13:4e77264f254a 235 } else {
FatCookies 13:4e77264f254a 236 turning++;
FatCookies 13:4e77264f254a 237 }
FatCookies 13:4e77264f254a 238
FatCookies 13:4e77264f254a 239 } else {
FatCookies 13:4e77264f254a 240 if(turning) {
FatCookies 13:4e77264f254a 241 if(keepTurning == 0 || count > 6) {
FatCookies 13:4e77264f254a 242 keepTurning++;
FatCookies 13:4e77264f254a 243 } else {
FatCookies 15:ccde02f96449 244 //sendString("stop turning turned=%d",turning);
FatCookies 13:4e77264f254a 245 keepTurning = 0;
lh14g13 33:0fc789c09694 246 turning = 0;
lh14g13 33:0fc789c09694 247 left_motor_pid.desired_value=speed;
lh14g13 33:0fc789c09694 248 right_motot_pid.desired_value=speed;
FatCookies 13:4e77264f254a 249 TFC_SetMotorPWM(speed,speed);
FatCookies 13:4e77264f254a 250 }
FatCookies 13:4e77264f254a 251
FatCookies 13:4e77264f254a 252 }
FatCookies 13:4e77264f254a 253 }
FatCookies 29:b5b31256572b 254 */
FatCookies 13:4e77264f254a 255
maximusismax 8:7c5e6b1e7aa5 256 }
maximusismax 8:7c5e6b1e7aa5 257
maximusismax 31:1a06c9e1985e 258 //Unused function currently
maximusismax 31:1a06c9e1985e 259 //Was used to estimate whether the stop marker was seen
FatCookies 17:6ae90788cc2b 260 inline float getLineEntropy() {
FatCookies 17:6ae90788cc2b 261 float entropy = 0;
FatCookies 17:6ae90788cc2b 262 float last = (int8_t)(CLOSE_CAMERA[0] >> 4) & 0xFF;
FatCookies 17:6ae90788cc2b 263 for(int i = 1; i < 128; i++) {
FatCookies 17:6ae90788cc2b 264 entropy += abs(last - ((int8_t)(CLOSE_CAMERA[i] >> 4) & 0xFF));
FatCookies 17:6ae90788cc2b 265 }
FatCookies 17:6ae90788cc2b 266 return entropy;
FatCookies 17:6ae90788cc2b 267 }
FatCookies 17:6ae90788cc2b 268
FatCookies 17:6ae90788cc2b 269 void handlePID(pid_instance *pid) {
FatCookies 17:6ae90788cc2b 270 pid->dt = t.read();
FatCookies 17:6ae90788cc2b 271 pid->pid_error = pid->desired_value - pid->measured_value;
FatCookies 17:6ae90788cc2b 272 pid->integral = pid->integral + pid->pid_error * pid->dt;
FatCookies 17:6ae90788cc2b 273 pid->derivative = (pid->pid_error - pid->p_error) / pid->dt;
FatCookies 17:6ae90788cc2b 274 pid->output = pid->Kp * pid->pid_error + pid->Ki * pid->integral + pid->Kd * pid->derivative;
FatCookies 17:6ae90788cc2b 275 pid->p_error = pid->pid_error;
FatCookies 17:6ae90788cc2b 276
FatCookies 17:6ae90788cc2b 277 if(pid->integral > 1.0f) {
maximusismax 31:1a06c9e1985e 278 pid->integral = 1.0f;
FatCookies 17:6ae90788cc2b 279 }
FatCookies 27:627d67e3b9b0 280 if(pid->integral < -1.0f ) {
FatCookies 17:6ae90788cc2b 281 pid->integral = -1.0f;
FatCookies 17:6ae90788cc2b 282 }
FatCookies 17:6ae90788cc2b 283 }
FatCookies 17:6ae90788cc2b 284
lh14g13 19:65f0b6febc23 285
FatCookies 17:6ae90788cc2b 286 inline void PIDController() {
FatCookies 27:627d67e3b9b0 287 // update motor measurements
lh14g13 19:65f0b6febc23 288 // Read the angular velocity of both wheels
FatCookies 27:627d67e3b9b0 289
FatCookies 27:627d67e3b9b0 290 prevL = wL;
FatCookies 27:627d67e3b9b0 291 prevR = wR;
FatCookies 27:627d67e3b9b0 292
lh14g13 19:65f0b6febc23 293 wL=Get_Speed(Time_L);
lh14g13 19:65f0b6febc23 294 wR=Get_Speed(Time_R);
FatCookies 20:ed954836d028 295
FatCookies 20:ed954836d028 296 // Check if left wheel is slipping/giving an abnormal reading and ignore reading
maximusismax 31:1a06c9e1985e 297 if(wL - prevL < 1.2/0.025) { //<3 magic numbers: 48....?
FatCookies 20:ed954836d028 298 left_motor_pid.measured_value = wL;
FatCookies 20:ed954836d028 299 }
FatCookies 20:ed954836d028 300 if(wR - prevR < 1.2/0.025) {
FatCookies 20:ed954836d028 301 right_motor_pid.measured_value = wR;
FatCookies 20:ed954836d028 302 }
FatCookies 17:6ae90788cc2b 303
FatCookies 21:0b69fada7c5f 304
FatCookies 17:6ae90788cc2b 305 //PID Stuff!
FatCookies 17:6ae90788cc2b 306 t.start();
FatCookies 17:6ae90788cc2b 307 handlePID(&servo_pid);
FatCookies 17:6ae90788cc2b 308 handlePID(&left_motor_pid);
FatCookies 17:6ae90788cc2b 309 handlePID(&right_motor_pid);
FatCookies 17:6ae90788cc2b 310
FatCookies 17:6ae90788cc2b 311 if((-1.0 <= servo_pid.output) && (servo_pid.output <= 1.0))
FatCookies 17:6ae90788cc2b 312 {
FatCookies 17:6ae90788cc2b 313 TFC_SetServo(0, servo_pid.output);
FatCookies 17:6ae90788cc2b 314 }
FatCookies 17:6ae90788cc2b 315 else //Unhappy PID state
FatCookies 17:6ae90788cc2b 316 {
FatCookies 17:6ae90788cc2b 317 //sendString("out = %f p_err = %f", servo_pid.output, servo_pid.p_error);
maximusismax 31:1a06c9e1985e 318 //ALIGN_SERVO;
maximusismax 31:1a06c9e1985e 319 //Could cause the car to be travelling along one side of the track rather than in the middle
FatCookies 17:6ae90788cc2b 320 if(servo_pid.output >= 1.0f) {
FatCookies 17:6ae90788cc2b 321 TFC_SetServo(0, 0.9f);
FatCookies 17:6ae90788cc2b 322 servo_pid.output = 1.0f;
FatCookies 17:6ae90788cc2b 323 } else {
FatCookies 17:6ae90788cc2b 324 TFC_SetServo(0, -0.9f);
FatCookies 17:6ae90788cc2b 325 servo_pid.output = -1.0f;
FatCookies 17:6ae90788cc2b 326 }
FatCookies 17:6ae90788cc2b 327 }
FatCookies 17:6ae90788cc2b 328
FatCookies 17:6ae90788cc2b 329
FatCookies 20:ed954836d028 330 if(left_motor_pid.output > 1.0f) {
FatCookies 20:ed954836d028 331 left_motor_pid.output = 1.0f;
lh14g13 19:65f0b6febc23 332 }
FatCookies 29:b5b31256572b 333 if(left_motor_pid.output < 0.0f) {
FatCookies 27:627d67e3b9b0 334 left_motor_pid.output = 0.0f;
lh14g13 19:65f0b6febc23 335 }
lh14g13 19:65f0b6febc23 336
FatCookies 20:ed954836d028 337 if(right_motor_pid.output > 1.0f) {
FatCookies 20:ed954836d028 338 right_motor_pid.output = 1.0f;
FatCookies 20:ed954836d028 339 }
FatCookies 29:b5b31256572b 340 if(right_motor_pid.output < 0.0f) {
FatCookies 27:627d67e3b9b0 341 right_motor_pid.output = 0.0f;
FatCookies 20:ed954836d028 342 }
lh14g13 19:65f0b6febc23 343
FatCookies 20:ed954836d028 344 TFC_SetMotorPWM(left_motor_pid.output,right_motor_pid.output);
lh14g13 19:65f0b6febc23 345
FatCookies 21:0b69fada7c5f 346
FatCookies 17:6ae90788cc2b 347 t.stop();
FatCookies 17:6ae90788cc2b 348 t.reset();
FatCookies 17:6ae90788cc2b 349 t.start();
FatCookies 17:6ae90788cc2b 350 }
FatCookies 17:6ae90788cc2b 351
FatCookies 17:6ae90788cc2b 352 inline void handleStartStop() {
maximusismax 31:1a06c9e1985e 353
maximusismax 31:1a06c9e1985e 354 //Function to detect the NXP cup stop marker
maximusismax 22:973b95478663 355
maximusismax 31:1a06c9e1985e 356 int slower = 0; //Only send a string every few frames
maximusismax 31:1a06c9e1985e 357 int difference = 0; //Holds the difference between intensities of consecutive pixels
oj3g13 26:f3d770f3eda1 358 int lastPixel, currentPixel, transitionsSeen;
maximusismax 22:973b95478663 359 lastPixel = -1;
maximusismax 22:973b95478663 360 transitionsSeen = 0;
maximusismax 31:1a06c9e1985e 361 //Starting near the left edge, step right, counting transitions.
maximusismax 31:1a06c9e1985e 362 //If there are several (exact value varies, best established experimentally), it is the marker
maximusismax 22:973b95478663 363 for(int i = 30; i < 98; i++) {
oj3g13 26:f3d770f3eda1 364 currentPixel = (int)(CLOSE_CAMERA[i] >> 4) & 0xFF;
maximusismax 22:973b95478663 365 difference = lastPixel - currentPixel;
FatCookies 27:627d67e3b9b0 366 if(abs(difference) > 10 && lastPixel != -1){ //transition seen, increment counter
maximusismax 22:973b95478663 367 transitionsSeen++;
oj3g13 26:f3d770f3eda1 368 i+=5;
maximusismax 22:973b95478663 369 }
maximusismax 22:973b95478663 370 lastPixel = currentPixel;
maximusismax 22:973b95478663 371 }
maximusismax 31:1a06c9e1985e 372 //Was used to send an indication that the marker was seen, useful for debugging
oj3g13 26:f3d770f3eda1 373 //if (slower % 1000 == 0) {
oj3g13 26:f3d770f3eda1 374 //sendString("Transitions seen: %d", transitionsSeen);
oj3g13 26:f3d770f3eda1 375 //}
maximusismax 31:1a06c9e1985e 376 //slower++;
oj3g13 26:f3d770f3eda1 377 if(transitionsSeen >= 5) {
maximusismax 22:973b95478663 378 //Stop the car!
oj3g13 26:f3d770f3eda1 379 sendString("Start/stop seen");
oj3g13 26:f3d770f3eda1 380 TFC_SetMotorPWM(0.f,0.f);
oj3g13 26:f3d770f3eda1 381 TFC_HBRIDGE_DISABLE;
FatCookies 27:627d67e3b9b0 382 lapTime();
oj3g13 26:f3d770f3eda1 383 }
FatCookies 17:6ae90788cc2b 384 }
FatCookies 17:6ae90788cc2b 385
FatCookies 17:6ae90788cc2b 386
FatCookies 17:6ae90788cc2b 387 inline void initSpeedSensors() {
FatCookies 17:6ae90788cc2b 388 t1.start();
FatCookies 17:6ae90788cc2b 389 t2.start();
FatCookies 17:6ae90788cc2b 390
FatCookies 17:6ae90788cc2b 391 //Left and Right are defined looking at the rear of the car, in the direction the camera points at.
FatCookies 17:6ae90788cc2b 392 leftHallSensor.rise(&GetTime_L);
FatCookies 17:6ae90788cc2b 393 rightHallSensor.rise(&GetTime_R);
FatCookies 17:6ae90788cc2b 394 }
FatCookies 17:6ae90788cc2b 395
FatCookies 17:6ae90788cc2b 396 void GetTime_L(){
FatCookies 17:6ae90788cc2b 397 Time_L=t1.read_us();
FatCookies 17:6ae90788cc2b 398 t1.reset();
FatCookies 17:6ae90788cc2b 399 }
FatCookies 17:6ae90788cc2b 400
FatCookies 17:6ae90788cc2b 401 void GetTime_R(){
FatCookies 17:6ae90788cc2b 402 Time_R=t2.read_us();
FatCookies 17:6ae90788cc2b 403 t2.reset();
FatCookies 17:6ae90788cc2b 404 }
FatCookies 17:6ae90788cc2b 405
FatCookies 17:6ae90788cc2b 406 #if USE_COMMS
FatCookies 17:6ae90788cc2b 407 void sendBattery() {
FatCookies 17:6ae90788cc2b 408
FatCookies 17:6ae90788cc2b 409 if(frame_counter % 256 == 0) {
FatCookies 17:6ae90788cc2b 410 float level = TFC_ReadBatteryVoltage() * 6.25;
FatCookies 17:6ae90788cc2b 411 pc.putc('J');
FatCookies 28:613239f10ba4 412 byte_float_union._float = level;
FatCookies 27:627d67e3b9b0 413 pc.putc(byte_float_union.bytes[0]);
FatCookies 27:627d67e3b9b0 414 pc.putc(byte_float_union.bytes[1]);
FatCookies 27:627d67e3b9b0 415 pc.putc(byte_float_union.bytes[2]);
FatCookies 27:627d67e3b9b0 416 pc.putc(byte_float_union.bytes[3]);
FatCookies 17:6ae90788cc2b 417 }
FatCookies 17:6ae90788cc2b 418 }
FatCookies 17:6ae90788cc2b 419
FatCookies 17:6ae90788cc2b 420 void sendString(const char *format, ...) {
FatCookies 17:6ae90788cc2b 421 va_list arg;
FatCookies 17:6ae90788cc2b 422
FatCookies 17:6ae90788cc2b 423 pc.putc('E');
FatCookies 17:6ae90788cc2b 424 va_start (arg, format);
FatCookies 17:6ae90788cc2b 425 pc.vprintf(format,arg);
FatCookies 17:6ae90788cc2b 426 va_end (arg);
FatCookies 17:6ae90788cc2b 427 pc.putc(0);
FatCookies 17:6ae90788cc2b 428 }
FatCookies 17:6ae90788cc2b 429
maximusismax 8:7c5e6b1e7aa5 430 inline void sendImage() {
maximusismax 8:7c5e6b1e7aa5 431 //Only send 1/3 of camera frames to GUI program
maximusismax 8:7c5e6b1e7aa5 432 if((frame_counter % 3) == 0) {
maximusismax 8:7c5e6b1e7aa5 433 pc.putc('H');
FatCookies 15:ccde02f96449 434 if(sendCam == 0) {
FatCookies 15:ccde02f96449 435 for(i = 0; i < 128; i++) {
FatCookies 17:6ae90788cc2b 436 pc.putc((int8_t)(CLOSE_CAMERA[i] >> 4) & 0xFF);
FatCookies 15:ccde02f96449 437 }
FatCookies 15:ccde02f96449 438 } else {
FatCookies 15:ccde02f96449 439 for(i = 0; i < 128; i++) {
FatCookies 17:6ae90788cc2b 440 pc.putc((int8_t)(LOOKAHEAD_CAMERA[i] >> 4) & 0xFF);
FatCookies 15:ccde02f96449 441 }
FatCookies 15:ccde02f96449 442 }
FatCookies 13:4e77264f254a 443 sendBattery();
FatCookies 13:4e77264f254a 444 }
FatCookies 13:4e77264f254a 445
FatCookies 13:4e77264f254a 446 frame_counter++;
FatCookies 13:4e77264f254a 447 }
FatCookies 13:4e77264f254a 448
FatCookies 13:4e77264f254a 449 inline void sendSpeeds() {
FatCookies 17:6ae90788cc2b 450
lh14g13 19:65f0b6febc23 451 /*float en = getLineEntropy();
FatCookies 15:ccde02f96449 452
FatCookies 15:ccde02f96449 453 if(onTrack) {
FatCookies 15:ccde02f96449 454 if(en <= 14000) {
FatCookies 15:ccde02f96449 455 onTrack = false;
FatCookies 15:ccde02f96449 456 sendString("offfffffffffffff");
FatCookies 15:ccde02f96449 457 TFC_SetMotorPWM(0.0,0.0);
FatCookies 15:ccde02f96449 458 TFC_HBRIDGE_DISABLE;
FatCookies 15:ccde02f96449 459 }
FatCookies 15:ccde02f96449 460 } else {
FatCookies 15:ccde02f96449 461 if(en > 14000) {
FatCookies 15:ccde02f96449 462 onTrack = true;
FatCookies 15:ccde02f96449 463 sendString("ON TRACK");
FatCookies 15:ccde02f96449 464 }
lh14g13 19:65f0b6febc23 465 }*/
FatCookies 15:ccde02f96449 466
FatCookies 14:13085e161dd1 467
FatCookies 13:4e77264f254a 468 pc.putc('B');
FatCookies 28:613239f10ba4 469 byte_float_union._float = wL * WHEEL_RADIUS;//left_motor_pid.output; //
FatCookies 27:627d67e3b9b0 470 pc.putc(byte_float_union.bytes[0]);
FatCookies 27:627d67e3b9b0 471 pc.putc(byte_float_union.bytes[1]);
FatCookies 27:627d67e3b9b0 472 pc.putc(byte_float_union.bytes[2]);
FatCookies 27:627d67e3b9b0 473 pc.putc(byte_float_union.bytes[3]);
FatCookies 28:613239f10ba4 474 byte_float_union._float = wR * WHEEL_RADIUS; // right_motor_pid.output; //
FatCookies 27:627d67e3b9b0 475 pc.putc(byte_float_union.bytes[0]);
FatCookies 27:627d67e3b9b0 476 pc.putc(byte_float_union.bytes[1]);
FatCookies 27:627d67e3b9b0 477 pc.putc(byte_float_union.bytes[2]);
FatCookies 27:627d67e3b9b0 478 pc.putc(byte_float_union.bytes[3]);
FatCookies 27:627d67e3b9b0 479
maximusismax 8:7c5e6b1e7aa5 480 }
maximusismax 8:7c5e6b1e7aa5 481
FatCookies 13:4e77264f254a 482
maximusismax 8:7c5e6b1e7aa5 483 inline void handleComms() {
maximusismax 8:7c5e6b1e7aa5 484 if(curr_cmd != 0) {
FatCookies 4:4afa448c9cce 485 switch(curr_cmd) {
FatCookies 4:4afa448c9cce 486 case 'A':
FatCookies 20:ed954836d028 487 if(xb.cBuffer->available() >= 12) {
FatCookies 20:ed954836d028 488
FatCookies 27:627d67e3b9b0 489 byte_float_union.bytes[0] = xb.cBuffer->read();
FatCookies 27:627d67e3b9b0 490 byte_float_union.bytes[1] = xb.cBuffer->read();
FatCookies 27:627d67e3b9b0 491 byte_float_union.bytes[2] = xb.cBuffer->read();
FatCookies 27:627d67e3b9b0 492 byte_float_union.bytes[3] = xb.cBuffer->read();
FatCookies 28:613239f10ba4 493 servo_pid.Kp = byte_float_union._float;
FatCookies 20:ed954836d028 494
FatCookies 27:627d67e3b9b0 495 byte_float_union.bytes[0] = xb.cBuffer->read();
FatCookies 27:627d67e3b9b0 496 byte_float_union.bytes[1] = xb.cBuffer->read();
FatCookies 27:627d67e3b9b0 497 byte_float_union.bytes[2] = xb.cBuffer->read();
FatCookies 27:627d67e3b9b0 498 byte_float_union.bytes[3] = xb.cBuffer->read();
FatCookies 28:613239f10ba4 499 servo_pid.Ki = byte_float_union._float;
FatCookies 20:ed954836d028 500
FatCookies 27:627d67e3b9b0 501 byte_float_union.bytes[0] = xb.cBuffer->read();
FatCookies 27:627d67e3b9b0 502 byte_float_union.bytes[1] = xb.cBuffer->read();
FatCookies 27:627d67e3b9b0 503 byte_float_union.bytes[2] = xb.cBuffer->read();
FatCookies 27:627d67e3b9b0 504 byte_float_union.bytes[3] = xb.cBuffer->read();
FatCookies 28:613239f10ba4 505 servo_pid.Kd = byte_float_union._float;
FatCookies 20:ed954836d028 506
FatCookies 20:ed954836d028 507 sendString("pid= Kp: %f, Ki: %f, Kd: %f", servo_pid.Kp, servo_pid.Ki, servo_pid.Kd);
maximusismax 8:7c5e6b1e7aa5 508
FatCookies 4:4afa448c9cce 509 curr_cmd = 0;
FatCookies 4:4afa448c9cce 510 }
FatCookies 4:4afa448c9cce 511 break;
FatCookies 4:4afa448c9cce 512
FatCookies 4:4afa448c9cce 513 case 'F':
FatCookies 6:b0e160c51013 514 if(xb.cBuffer->available() >= 1) {
FatCookies 4:4afa448c9cce 515 char a = xb.cBuffer->read();
FatCookies 27:627d67e3b9b0 516 speed = a;
FatCookies 13:4e77264f254a 517 sendString("s = %u %f",a, speed);
FatCookies 4:4afa448c9cce 518 curr_cmd = 0;
FatCookies 29:b5b31256572b 519 right_motor_pid.desired_value=speed;
FatCookies 29:b5b31256572b 520 left_motor_pid.desired_value=speed;
FatCookies 4:4afa448c9cce 521 }
FatCookies 4:4afa448c9cce 522 break;
FatCookies 4:4afa448c9cce 523
FatCookies 4:4afa448c9cce 524 default:
FatCookies 13:4e77264f254a 525 // Unrecognised command
FatCookies 13:4e77264f254a 526 curr_cmd = 0;
FatCookies 4:4afa448c9cce 527 break;
FatCookies 4:4afa448c9cce 528 }
FatCookies 4:4afa448c9cce 529 }
FatCookies 4:4afa448c9cce 530
FatCookies 6:b0e160c51013 531 if(xb.cBuffer->available() > 0 && curr_cmd == 0) {
lh14g13 18:0095a3a8f8e4 532 //Start car
FatCookies 4:4afa448c9cce 533 char cmd = xb.cBuffer->read();
FatCookies 4:4afa448c9cce 534 if(cmd == 'D') {
FatCookies 17:6ae90788cc2b 535 ALIGN_SERVO;
FatCookies 21:0b69fada7c5f 536 right_motor_pid.desired_value=speed;
FatCookies 21:0b69fada7c5f 537 left_motor_pid.desired_value=speed;
FatCookies 4:4afa448c9cce 538 TFC_HBRIDGE_ENABLE;
FatCookies 29:b5b31256572b 539
FatCookies 21:0b69fada7c5f 540
FatCookies 12:da96e2f87465 541 servo_pid.integral = 0;
FatCookies 27:627d67e3b9b0 542 lapTimer.start();
lh14g13 18:0095a3a8f8e4 543 lapNo =0;
FatCookies 6:b0e160c51013 544
FatCookies 4:4afa448c9cce 545 } else if (cmd == 'C') {
FatCookies 4:4afa448c9cce 546 TFC_SetMotorPWM(0.0,0.0);
lh14g13 19:65f0b6febc23 547 right_motor_pid.desired_value=0;
FatCookies 21:0b69fada7c5f 548 right_motor_pid.measured_value = 0;
FatCookies 21:0b69fada7c5f 549 wR = 0;
FatCookies 21:0b69fada7c5f 550 prevR = 0;
FatCookies 21:0b69fada7c5f 551
lh14g13 19:65f0b6febc23 552 left_motor_pid.desired_value=0;
FatCookies 21:0b69fada7c5f 553 left_motor_pid.measured_value = 0;
FatCookies 21:0b69fada7c5f 554 wL = 0;
FatCookies 21:0b69fada7c5f 555 prevL = 0;
FatCookies 21:0b69fada7c5f 556
FatCookies 4:4afa448c9cce 557 TFC_HBRIDGE_DISABLE;
lh14g13 18:0095a3a8f8e4 558 endTest();
FatCookies 4:4afa448c9cce 559 } else if(cmd == 'A') {
FatCookies 4:4afa448c9cce 560 curr_cmd = 'A';
FatCookies 4:4afa448c9cce 561 } else if(cmd == 'F') {
FatCookies 4:4afa448c9cce 562 curr_cmd = 'F';
FatCookies 15:ccde02f96449 563 } else if(cmd == 'K') {
FatCookies 15:ccde02f96449 564 sendCam = ~sendCam;
FatCookies 4:4afa448c9cce 565 }
FatCookies 4:4afa448c9cce 566
FatCookies 4:4afa448c9cce 567 }
maximusismax 8:7c5e6b1e7aa5 568 }
lh14g13 18:0095a3a8f8e4 569
lh14g13 18:0095a3a8f8e4 570 float testSpeed(float speed)
lh14g13 18:0095a3a8f8e4 571 {
lh14g13 18:0095a3a8f8e4 572 // search: Speed Increase
lh14g13 18:0095a3a8f8e4 573 // every time the car sees the stop start the speed of the car will increase
lh14g13 18:0095a3a8f8e4 574 // this can occur on stop start trigger.
lh14g13 18:0095a3a8f8e4 575 // may need to send the speed back to the telemetry.
lh14g13 18:0095a3a8f8e4 576 if (speed>0.4)
lh14g13 18:0095a3a8f8e4 577 {
lh14g13 18:0095a3a8f8e4 578 speed+=0.05;
lh14g13 18:0095a3a8f8e4 579 }
lh14g13 18:0095a3a8f8e4 580
lh14g13 18:0095a3a8f8e4 581 else
lh14g13 18:0095a3a8f8e4 582 {
lh14g13 18:0095a3a8f8e4 583 speed+=0.1;
lh14g13 18:0095a3a8f8e4 584
lh14g13 18:0095a3a8f8e4 585 }
lh14g13 18:0095a3a8f8e4 586
lh14g13 18:0095a3a8f8e4 587
lh14g13 18:0095a3a8f8e4 588 sendString("s = %f", speed);
lh14g13 18:0095a3a8f8e4 589 return speed;
lh14g13 18:0095a3a8f8e4 590
lh14g13 18:0095a3a8f8e4 591 }
lh14g13 18:0095a3a8f8e4 592
lh14g13 18:0095a3a8f8e4 593
lh14g13 18:0095a3a8f8e4 594
lh14g13 18:0095a3a8f8e4 595 int lapTime()
lh14g13 19:65f0b6febc23 596 {
lh14g13 18:0095a3a8f8e4 597 // function which sends the lap time back to the telemetry.
lh14g13 32:6829684f8c4d 598 //reads the timer
FatCookies 27:627d67e3b9b0 599 float newTime= lapTimer.read();
lh14g13 18:0095a3a8f8e4 600 lapNo += 1;
lh14g13 18:0095a3a8f8e4 601 float lapTime= newTime-oldTime;
lh14g13 18:0095a3a8f8e4 602 float avgTime= newTime/lapNo;
lh14g13 32:6829684f8c4d 603 // this calulates the average lap time and the lap time.
lh14g13 32:6829684f8c4d 604 //then sends the information back to the UI.
lh14g13 19:65f0b6febc23 605 sendString("For lap number: %d Lap Time: %f Avergae time: %f \n\r", lapNo,lapTime,avgTime);
lh14g13 18:0095a3a8f8e4 606
lh14g13 32:6829684f8c4d 607
lh14g13 18:0095a3a8f8e4 608 return 0;
lh14g13 18:0095a3a8f8e4 609 }
lh14g13 18:0095a3a8f8e4 610
lh14g13 18:0095a3a8f8e4 611
lh14g13 18:0095a3a8f8e4 612 void endTest()
lh14g13 18:0095a3a8f8e4 613 {// This runs when the car has stopped, this should give the final elapsed time and othere things. this also stops the timer
lh14g13 18:0095a3a8f8e4 614
FatCookies 27:627d67e3b9b0 615 float time= lapTimer.read();
lh14g13 18:0095a3a8f8e4 616
lh14g13 19:65f0b6febc23 617 sendString("Laps done: %d Time elapsed: %f Average time: %f \n\r",lapNo, time,float (time/lapNo));
FatCookies 27:627d67e3b9b0 618 lapTimer.stop();
lh14g13 18:0095a3a8f8e4 619
lh14g13 18:0095a3a8f8e4 620
lh14g13 19:65f0b6febc23 621 }
lh14g13 33:0fc789c09694 622 //motor controll specific(newfunction)
lh14g13 18:0095a3a8f8e4 623
lh14g13 18:0095a3a8f8e4 624
lh14g13 18:0095a3a8f8e4 625
lh14g13 18:0095a3a8f8e4 626
FatCookies 17:6ae90788cc2b 627 #endif