02/07/15

Dependencies:   mbed

Dependents:   TabbedGUIMbed

Committer:
aidanPJG
Date:
Wed Aug 05 15:32:48 2015 +0000
Revision:
66:b642dac6f65d
Parent:
65:08b3eb9b95dd
Child:
67:04d67617131a
changed handshake;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ADAMSTRUTT 17:d9fb4a3780c7 1 #include "mbed.h"
ADAMSTRUTT 17:d9fb4a3780c7 2 #include "Calculate.h"
ADAMSTRUTT 17:d9fb4a3780c7 3 #include "Distance.h"
ADAMSTRUTT 35:085a674c9fdf 4 #include "Data.h"
aidanPJG 48:e9578f56534a 5 #include "UserInput.h"
aidanPJG 56:bf08d9e50ccc 6 #include "AddDetails.h"
ADAMSTRUTT 35:085a674c9fdf 7
aidanPJG 25:bab86a12e9ad 8 Serial pc(USBTX, USBRX); // tx, rx
aidanPJG 59:2cbbd6fea55b 9 DigitalOut led1(LED1);
aidanPJG 59:2cbbd6fea55b 10 DigitalOut led2(LED2);
aidanPJG 65:08b3eb9b95dd 11 string handshake();
aidanPJG 59:2cbbd6fea55b 12 void run();
ADAMSTRUTT 17:d9fb4a3780c7 13
ADAMSTRUTT 20:0b2279011691 14 int main(void)
aidanPJG 7:d6f78ba7c5f7 15 {
aidanPJG 59:2cbbd6fea55b 16 initialise(3); //used to create the Datalog file should happen once for every bend test
aidanPJG 65:08b3eb9b95dd 17 if (handshake() == "success")
aidanPJG 65:08b3eb9b95dd 18 {
aidanPJG 65:08b3eb9b95dd 19 run();
aidanPJG 65:08b3eb9b95dd 20 }
aidanPJG 65:08b3eb9b95dd 21 pc.printf("main after"); //it works now!!!!!!!!!!!!!!!
aidanPJG 65:08b3eb9b95dd 22 led2= 1;
aidanPJG 59:2cbbd6fea55b 23 }
aidanPJG 65:08b3eb9b95dd 24 string handshake()
aidanPJG 59:2cbbd6fea55b 25 {
aidanPJG 59:2cbbd6fea55b 26 unsigned char input;
aidanPJG 59:2cbbd6fea55b 27 pc.printf("a\n");
aidanPJG 59:2cbbd6fea55b 28
aidanPJG 59:2cbbd6fea55b 29 while(true)
aidanPJG 59:2cbbd6fea55b 30 {
aidanPJG 59:2cbbd6fea55b 31 input = pc.getc();
aidanPJG 59:2cbbd6fea55b 32 if (input == 'a')
aidanPJG 59:2cbbd6fea55b 33 {
aidanPJG 66:b642dac6f65d 34 led1 = 1;
aidanPJG 65:08b3eb9b95dd 35 return "success" ;// run();
aidanPJG 59:2cbbd6fea55b 36 }
aidanPJG 59:2cbbd6fea55b 37 }
aidanPJG 59:2cbbd6fea55b 38 }
aidanPJG 59:2cbbd6fea55b 39 void run()
aidanPJG 59:2cbbd6fea55b 40 {
aidanPJG 55:58e9836f5ad1 41 int pins = inputNoOfPins(); //gets number of pins
aidanPJG 55:58e9836f5ad1 42 double distance = inputDistance(); //gets the distance between the pins
aidanPJG 59:2cbbd6fea55b 43 calculate(distance,pins);
aidanPJG 59:2cbbd6fea55b 44 }