Proj 324 Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

Committer:
thomasmorris
Date:
Wed Dec 27 21:25:28 2017 +0000
Revision:
19:54bc302a82ea
Parent:
18:194a606ccd47
Child:
20:cbb71f84cff9
Working Mode Selections isnt it

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thomasmorris 6:97f586597310 1 /*
thomasmorris 6:97f586597310 2 ELEC 351 Group T
thomasmorris 6:97f586597310 3 Team Members : Christopher Hills, Thomas Morris
thomasmorris 8:0e4481b64353 4 Current Verision 3
thomasmorris 6:97f586597310 5 Overiew: Working Tasks 1,5,7
thomasmorris 8:0e4481b64353 6
thomasmorris 12:536eca338ae8 7 Last Revision: Added Mail Box to serial
thomasmorris 8:0e4481b64353 8 Todo:
thomasmorris 12:536eca338ae8 9 make a mailbox within SD card, LCD, network so they can be used from within
thomasmorris 12:536eca338ae8 10 Fix the network so it uses the mail box data.
thomasmorris 12:536eca338ae8 11 Place the LCD write functions in their own function
thomasmorris 6:97f586597310 12 */
thomasmorris 6:97f586597310 13
thomasmorris 8:0e4481b64353 14 //Includes and Definitions
noutram 1:e1cf7663f5ff 15 #include "sample_hardware.hpp"
noutram 3:a88838ff33e7 16 #include "Networkbits.hpp"
thomasmorris 5:2594b953f111 17 #include "rtos.h"
thomasmorris 5:2594b953f111 18 #include "LED.hpp"
thomasmorris 8:0e4481b64353 19 #include "DATA.hpp"
thomasmorris 8:0e4481b64353 20 #include "NETWORK.hpp"
thomasmorris 5:2594b953f111 21 #define SamplingTime 1
thomasmorris 5:2594b953f111 22 #define NotSamplingTime 0
thomasmorris 7:dfe19413fdc2 23 #define Print_Time_to_LCD 1
thomasmorris 7:dfe19413fdc2 24 #define Dont_Print_Time_to_LCD 0
chills 15:c1592fc1a501 25 #define TimerInterval 1 //This is in seconds
thomasmorris 7:dfe19413fdc2 26 #define EDGE_RISEN 1
thomasmorris 7:dfe19413fdc2 27 #define EDGE_FALLEN 0
chills 16:067916791a25 28 #define mailsize 5
thomasmorris 8:0e4481b64353 29
thomasmorris 8:0e4481b64353 30
thomasmorris 5:2594b953f111 31 Serial pc(USBTX, USBRX);
thomasmorris 7:dfe19413fdc2 32 //SW1+SW2 are declared as interrupt ins in sample hardwarec.pp
thomasmorris 8:0e4481b64353 33
thomasmorris 8:0e4481b64353 34
thomasmorris 8:0e4481b64353 35 //Thread IDs
thomasmorris 5:2594b953f111 36 osThreadId idMain;
thomasmorris 5:2594b953f111 37 osThreadId id1;
thomasmorris 5:2594b953f111 38 osThreadId id2;
thomasmorris 5:2594b953f111 39 osThreadId id3;
thomasmorris 5:2594b953f111 40 osThreadId id4;
noutram 0:36e89e3ed7c4 41
thomasmorris 7:dfe19413fdc2 42 Timeout sw1TimeOut;//Used to prevent switch bounce
thomasmorris 7:dfe19413fdc2 43
thomasmorris 5:2594b953f111 44 LED Red_led(PE_15);
thomasmorris 5:2594b953f111 45 LED Yellow_led(PB_10);
thomasmorris 5:2594b953f111 46 LED Green_led(PB_11);
thomasmorris 5:2594b953f111 47
thomasmorris 8:0e4481b64353 48 //Tickers
thomasmorris 8:0e4481b64353 49
thomasmorris 5:2594b953f111 50 Ticker Sample_timer;
thomasmorris 8:0e4481b64353 51
noutram 3:a88838ff33e7 52 //Threads
thomasmorris 5:2594b953f111 53 Thread t1;
thomasmorris 5:2594b953f111 54 Thread t2;
thomasmorris 7:dfe19413fdc2 55 Thread t5;
thomasmorris 7:dfe19413fdc2 56 Thread t6;
thomasmorris 7:dfe19413fdc2 57
thomasmorris 7:dfe19413fdc2 58 double temp = 0;
thomasmorris 7:dfe19413fdc2 59 double pressure = 0;
thomasmorris 7:dfe19413fdc2 60 double lux = 0;
chills 10:46946784326d 61 string buffer_time = 0;
thomasmorris 7:dfe19413fdc2 62
thomasmorris 7:dfe19413fdc2 63 char buffer[32];
chills 15:c1592fc1a501 64 char scom_time_buffer[32];
chills 17:37d883f40c3d 65 char msel_time_buffer[32];
thomasmorris 7:dfe19413fdc2 66
thomasmorris 7:dfe19413fdc2 67 void SW1FallingEdge();
thomasmorris 7:dfe19413fdc2 68 void SW1TimeOutHandler();
thomasmorris 7:dfe19413fdc2 69
thomasmorris 7:dfe19413fdc2 70 int mode = 0;
thomasmorris 7:dfe19413fdc2 71
chills 17:37d883f40c3d 72 Mail<DATA, mailsize> mail_box; //Mail Queue, Type DATA, Capacity mailsize(defined above), name mail_box
thomasmorris 8:0e4481b64353 73
chills 13:db857b3744c6 74 void Network() //Interrupt service routine for handling the timeout
thomasmorris 8:0e4481b64353 75 {
chills 13:db857b3744c6 76 osEvent evt_network = mail_box.get(); //Get the latest entry from "mail_box"
chills 13:db857b3744c6 77
chills 13:db857b3744c6 78 if (evt_network.status == osEventMail)
chills 13:db857b3744c6 79 {
chills 17:37d883f40c3d 80 DATA *Rec_Data_Network = (DATA*)evt_network.value.p; //Create pointer to mailbox
chills 17:37d883f40c3d 81 DATA msg_network; //Create temporary instance of DATA class
chills 13:db857b3744c6 82
chills 17:37d883f40c3d 83 msg_network.set_time(Rec_Data_Network->get_time()); //Copy time from mailbox to temporary instance
chills 17:37d883f40c3d 84 msg_network.set_temperature(Rec_Data_Network->get_temperature()); //Copy temperature from mailbox to temporary instance
chills 17:37d883f40c3d 85 msg_network.set_pressure(Rec_Data_Network->get_pressure()); //Copy pressure from mailbox to temporary instance
chills 17:37d883f40c3d 86 msg_network.set_light(Rec_Data_Network->get_light()); //Copy light from mailbox to temporary instance
chills 17:37d883f40c3d 87 mail_box.free(Rec_Data_Network); //Free space in the mailbox (delete earliest sample taken)
chills 13:db857b3744c6 88
thomasmorris 18:194a606ccd47 89 networktest();
chills 13:db857b3744c6 90 //NETWORK_Print(); //Runs the network
chills 13:db857b3744c6 91 }
chills 13:db857b3744c6 92 }
chills 13:db857b3744c6 93
thomasmorris 8:0e4481b64353 94 void SW1TimeOutHandler()
thomasmorris 8:0e4481b64353 95 {
thomasmorris 7:dfe19413fdc2 96 sw1TimeOut.detach(); //Stop the timeout counter firing
thomasmorris 7:dfe19413fdc2 97 SW1.fall(&SW1FallingEdge); //Now wait for a falling edge
thomasmorris 7:dfe19413fdc2 98 }
thomasmorris 12:536eca338ae8 99 void SDWrite()//End of skype chat
thomasmorris 12:536eca338ae8 100 {
chills 13:db857b3744c6 101 osEvent evt_sd = mail_box.get(); //Get the latest entry from "mail_box"
chills 13:db857b3744c6 102
chills 13:db857b3744c6 103 if (evt_sd.status == osEventMail)
chills 13:db857b3744c6 104 {
chills 17:37d883f40c3d 105 DATA *Rec_Data_SD = (DATA*)evt_sd.value.p; //Create pointer to mailbox
chills 17:37d883f40c3d 106 DATA msg_sd; //Create temporary instance of DATA class
chills 13:db857b3744c6 107
chills 17:37d883f40c3d 108 msg_sd.set_time(Rec_Data_SD->get_time()); //Copy time from mailbox to temporary instance
chills 17:37d883f40c3d 109 msg_sd.set_temperature(Rec_Data_SD->get_temperature()); //Copy temperature from mailbox to temporary instance
chills 17:37d883f40c3d 110 msg_sd.set_pressure(Rec_Data_SD->get_pressure()); //Copy pressure from mailbox to temporary instance
chills 17:37d883f40c3d 111 msg_sd.set_light(Rec_Data_SD->get_light()); //Copy light from mailbox to temporary instance
chills 17:37d883f40c3d 112 mail_box.free(Rec_Data_SD); //Free space in the mailbox (delete earliest sample taken)
chills 13:db857b3744c6 113 }
thomasmorris 12:536eca338ae8 114 }
thomasmorris 7:dfe19413fdc2 115 //Interrupt service routive for SW1 falling edge (release)
thomasmorris 19:54bc302a82ea 116 void SW1FallingEdge()
thomasmorris 19:54bc302a82ea 117 {
thomasmorris 7:dfe19413fdc2 118 SW1.fall(NULL); //Disable this interrupt
chills 16:067916791a25 119 Yellow_led.Toggle(); //Toggle LED
thomasmorris 7:dfe19413fdc2 120
thomasmorris 7:dfe19413fdc2 121 mode = mode +1;//Cycles through modes
thomasmorris 7:dfe19413fdc2 122 if(mode >1)
thomasmorris 7:dfe19413fdc2 123 {
thomasmorris 7:dfe19413fdc2 124 mode = 0;
thomasmorris 7:dfe19413fdc2 125 }
thomasmorris 7:dfe19413fdc2 126
thomasmorris 7:dfe19413fdc2 127 sw1TimeOut.attach(&SW1TimeOutHandler, 0.2); //Start timeout counter
thomasmorris 7:dfe19413fdc2 128 }
thomasmorris 7:dfe19413fdc2 129 void ModeSelection()
thomasmorris 7:dfe19413fdc2 130 {
thomasmorris 7:dfe19413fdc2 131 while(1){
chills 13:db857b3744c6 132
chills 16:067916791a25 133 //Thread::wait(1000);
chills 13:db857b3744c6 134
chills 13:db857b3744c6 135 osEvent evt_lcd = mail_box.get(); //Get the latest entry from "mail_box"
chills 13:db857b3744c6 136
chills 13:db857b3744c6 137 if (evt_lcd.status == osEventMail)
thomasmorris 7:dfe19413fdc2 138 {
chills 17:37d883f40c3d 139 DATA *Rec_Data_LCD = (DATA*)evt_lcd.value.p; //Create pointer to mailbox
chills 17:37d883f40c3d 140 DATA msg_lcd; //Create temporary instance of DATA class
chills 13:db857b3744c6 141
chills 17:37d883f40c3d 142 msg_lcd.set_time(Rec_Data_LCD->get_time()); //Copy time from mailbox to temporary instance
chills 17:37d883f40c3d 143 msg_lcd.set_temperature(Rec_Data_LCD->get_temperature()); //Copy temperature from mailbox to temporary instance
chills 17:37d883f40c3d 144 msg_lcd.set_pressure(Rec_Data_LCD->get_pressure()); //Copy pressure from mailbox to temporary instance
chills 17:37d883f40c3d 145 msg_lcd.set_light(Rec_Data_LCD->get_light()); //Copy light from mailbox to temporary instance
chills 17:37d883f40c3d 146 mail_box.free(Rec_Data_LCD); //Free space in the mailbox (delete earliest sample taken)
chills 13:db857b3744c6 147
chills 13:db857b3744c6 148 if(mode == 0)//Print values to the LCD
chills 13:db857b3744c6 149 {
chills 13:db857b3744c6 150 //Write new data to LCD (not fast!)
chills 13:db857b3744c6 151 lcd.cls();
chills 13:db857b3744c6 152 lcd.printf("Temp Pres li\n");
chills 13:db857b3744c6 153 lcd.printf("%1.1f ", msg_lcd.get_temperature()); //Print Temperature to LCD
chills 13:db857b3744c6 154 lcd.printf("%1.1f ", msg_lcd.get_pressure()); //Print Pressure to LCD
chills 13:db857b3744c6 155 lcd.printf("%1.1f\n", msg_lcd.get_light()); //Print Light to LCD
chills 13:db857b3744c6 156 }
chills 13:db857b3744c6 157 else if(mode == 1)//Print the Time to the LCD
chills 13:db857b3744c6 158 {
chills 17:37d883f40c3d 159 time_t msel_time = msg_lcd.get_time(); //Declare local variable for time
thomasmorris 18:194a606ccd47 160 strftime(scom_time_buffer, 32, "%I:%M %p", localtime(&msel_time)); //Format time as a string
chills 17:37d883f40c3d 161 lcd.cls(); //Write new data to LCD (not fast!)
thomasmorris 18:194a606ccd47 162 lcd.printf("Current Time:%s", scom_time_buffer);
chills 13:db857b3744c6 163 }
chills 13:db857b3744c6 164 else
chills 13:db857b3744c6 165 {
chills 13:db857b3744c6 166 mode = 0;
chills 13:db857b3744c6 167 }
thomasmorris 7:dfe19413fdc2 168 }
thomasmorris 7:dfe19413fdc2 169 }
thomasmorris 7:dfe19413fdc2 170 }
thomasmorris 7:dfe19413fdc2 171
thomasmorris 5:2594b953f111 172 void Serial_Comms()//Thread for Serial Communications
thomasmorris 5:2594b953f111 173 {
thomasmorris 5:2594b953f111 174 while(1)
thomasmorris 5:2594b953f111 175 {
chills 13:db857b3744c6 176 osEvent evt_serial = mail_box.get(); //Get the latest entry from "mail_box"
chills 10:46946784326d 177
chills 13:db857b3744c6 178 if (evt_serial.status == osEventMail)
thomasmorris 12:536eca338ae8 179 {
chills 17:37d883f40c3d 180 DATA *Rec_Data_Serial = (DATA*)evt_serial.value.p; //Create pointer to mailbox
chills 17:37d883f40c3d 181 DATA msg_serial; //Create temporary instance of DATA class
chills 11:e7b5ed6cd3cf 182
chills 17:37d883f40c3d 183 msg_serial.set_time(Rec_Data_Serial->get_time()); //Copy time from mailbox to temporary instance
chills 17:37d883f40c3d 184 msg_serial.set_temperature(Rec_Data_Serial->get_temperature()); //Copy teperature from mailbox to temporary instance
chills 17:37d883f40c3d 185 msg_serial.set_pressure(Rec_Data_Serial->get_pressure()); //Copy pressure from mailbox to temporary instance
chills 17:37d883f40c3d 186 msg_serial.set_light(Rec_Data_Serial->get_light()); //Copy light from mailbox to temporary instance
chills 17:37d883f40c3d 187 mail_box.free(Rec_Data_Serial); //Free space in the mailbox (delete earliest sample taken)
chills 11:e7b5ed6cd3cf 188
chills 17:37d883f40c3d 189 time_t scom_time = msg_serial.get_time(); //Declare local variable for time
chills 17:37d883f40c3d 190 strftime(scom_time_buffer, 32, "%I:%M %p\t", localtime(&scom_time)); //Format time as a string
chills 17:37d883f40c3d 191 pc.printf("Time = %s", scom_time_buffer); //Print the string formatted time
chills 15:c1592fc1a501 192
chills 13:db857b3744c6 193 pc.printf("Temperature = %f\t", msg_serial.get_temperature()); //Print Temperature
chills 13:db857b3744c6 194 pc.printf("Pressure = %f\t", msg_serial.get_pressure()); //Print Pressure
chills 13:db857b3744c6 195 pc.printf("Light = %f\n\r", msg_serial.get_light()); //Print Light
chills 10:46946784326d 196 }
thomasmorris 7:dfe19413fdc2 197 Green_led.Toggle();
chills 16:067916791a25 198 //Thread::wait(1000);
thomasmorris 5:2594b953f111 199 }
thomasmorris 5:2594b953f111 200 }
thomasmorris 5:2594b953f111 201
chills 10:46946784326d 202 void Sample_signal_set() //Sets the Signal for when to sample the sensors
thomasmorris 5:2594b953f111 203 {
chills 10:46946784326d 204 t1.signal_set(SamplingTime); //Set the sampling thread signal high
thomasmorris 5:2594b953f111 205 }
thomasmorris 5:2594b953f111 206 void Sample()//Samples the hardware and prints the result to the LCD
thomasmorris 5:2594b953f111 207 {
thomasmorris 5:2594b953f111 208 while(1)
thomasmorris 5:2594b953f111 209 {
chills 10:46946784326d 210 Thread::signal_wait(SamplingTime); //Set the time between samples
chills 10:46946784326d 211
chills 10:46946784326d 212 temp = sensor.getTemperature(); //Read Temperature
chills 10:46946784326d 213 pressure = sensor.getPressure(); //Read Pressure
chills 10:46946784326d 214 lux = adcIn.read(); //Read Light
chills 16:067916791a25 215 time_t buffer_time = time(NULL); //Read Time
thomasmorris 7:dfe19413fdc2 216
chills 16:067916791a25 217 DATA *Send_Data = mail_box.alloc(); //Allocate a block from the memory pool, Type Data
thomasmorris 5:2594b953f111 218
chills 16:067916791a25 219 if (Send_Data == NULL){ //If Data is empty
chills 16:067916791a25 220 //pc.printf("Out of memory\n\r"); //Print out of memory warning
chills 10:46946784326d 221 return;
chills 10:46946784326d 222 }
chills 10:46946784326d 223
chills 10:46946784326d 224 Send_Data->set_time(buffer_time); //Pass in Time
chills 10:46946784326d 225 Send_Data->set_temperature(temp); //Pass in Temp
chills 10:46946784326d 226 Send_Data->set_pressure(pressure); //Pass in Pres
chills 10:46946784326d 227 Send_Data->set_light(lux); //Pass in Light
chills 10:46946784326d 228
chills 10:46946784326d 229 osStatus stat = mail_box.put(Send_Data); //Puts "Send_Data" into the mailbox
chills 10:46946784326d 230
chills 10:46946784326d 231 if (stat == osErrorResource){ //If mailbox overfills
chills 10:46946784326d 232 //pc.printf("queue->put() Error code: %4Xh, Resource not available\r\n", stat); //Print error message
chills 10:46946784326d 233 mail_box.free(Send_Data); //Free the mail box
chills 10:46946784326d 234 return;
chills 10:46946784326d 235 }
thomasmorris 5:2594b953f111 236 Red_led.Toggle();
thomasmorris 5:2594b953f111 237 t1.signal_set(NotSamplingTime);
thomasmorris 5:2594b953f111 238 }
thomasmorris 5:2594b953f111 239 }
thomasmorris 5:2594b953f111 240 int main()
thomasmorris 5:2594b953f111 241 {
noutram 1:e1cf7663f5ff 242 //Greeting
chills 16:067916791a25 243 pc.printf("Test Start");
chills 16:067916791a25 244 pc.printf("\n\r");
chills 16:067916791a25 245
chills 10:46946784326d 246 set_time(1512940530); //Set RTC time to December 10 2017
chills 10:46946784326d 247 pc.baud(9600); //Sets the Serial Comms Baud Rate
thomasmorris 5:2594b953f111 248
chills 15:c1592fc1a501 249 /*
chills 10:46946784326d 250 post(); //Power on Self Test
noutram 1:e1cf7663f5ff 251
noutram 3:a88838ff33e7 252 //Initialise the SD card (this needs to move)
noutram 1:e1cf7663f5ff 253 if ( sd.init() != 0) {
noutram 1:e1cf7663f5ff 254 printf("Init failed \n");
noutram 3:a88838ff33e7 255 lcd.cls();
noutram 3:a88838ff33e7 256 lcd.printf("CANNOT INIT SD");
noutram 1:e1cf7663f5ff 257 errorCode(FATAL);
noutram 1:e1cf7663f5ff 258 }
noutram 1:e1cf7663f5ff 259
noutram 1:e1cf7663f5ff 260 //Create a filing system for SD Card
noutram 1:e1cf7663f5ff 261 FATFileSystem fs("sd", &sd);
noutram 0:36e89e3ed7c4 262
noutram 1:e1cf7663f5ff 263 //Open to WRITE
noutram 1:e1cf7663f5ff 264 FILE* fp = fopen("/sd/test.csv","a");
noutram 1:e1cf7663f5ff 265 if (fp == NULL) {
noutram 1:e1cf7663f5ff 266 error("Could not open file for write\n");
noutram 3:a88838ff33e7 267 lcd.cls();
noutram 3:a88838ff33e7 268 lcd.printf("CANNOT OPEN FILE\n\n");
noutram 1:e1cf7663f5ff 269 errorCode(FATAL);
noutram 1:e1cf7663f5ff 270 }
noutram 3:a88838ff33e7 271
noutram 3:a88838ff33e7 272 //Last message before sampling begins
noutram 3:a88838ff33e7 273 lcd.cls();
noutram 3:a88838ff33e7 274 lcd.printf("READY\n\n");
chills 15:c1592fc1a501 275 */
thomasmorris 5:2594b953f111 276
thomasmorris 5:2594b953f111 277 //Run interrupt
thomasmorris 5:2594b953f111 278 Sample_timer.attach(&Sample_signal_set,TimerInterval);
thomasmorris 7:dfe19413fdc2 279 SW1.fall(&SW1FallingEdge);
thomasmorris 5:2594b953f111 280 //Run Threads
thomasmorris 5:2594b953f111 281
thomasmorris 5:2594b953f111 282 t1.start(Sample);
thomasmorris 5:2594b953f111 283 t2.start(Serial_Comms);
chills 16:067916791a25 284 t5.start(ModeSelection);
thomasmorris 18:194a606ccd47 285 t6.start(Network);
thomasmorris 5:2594b953f111 286 //Main thread ID
thomasmorris 5:2594b953f111 287
thomasmorris 5:2594b953f111 288 idMain = osThreadGetId(); //CMSIS RTOS call
thomasmorris 5:2594b953f111 289
thomasmorris 5:2594b953f111 290 //Thread ID
thomasmorris 5:2594b953f111 291 id1 = t1.gettid();
thomasmorris 5:2594b953f111 292 id2 = t2.gettid();
thomasmorris 8:0e4481b64353 293 //id5 = t5.gettid();
thomasmorris 5:2594b953f111 294
thomasmorris 5:2594b953f111 295 //Toggle Green LED after a button has been pressed
noutram 1:e1cf7663f5ff 296 //Press either switch to unmount
thomasmorris 7:dfe19413fdc2 297 DigitalIn onBoardSwitch(USER_BUTTON);
thomasmorris 7:dfe19413fdc2 298 while (onBoardSwitch == 0){
thomasmorris 7:dfe19413fdc2 299
noutram 1:e1cf7663f5ff 300 }
noutram 1:e1cf7663f5ff 301
noutram 1:e1cf7663f5ff 302 //Close File
chills 15:c1592fc1a501 303 /*
noutram 1:e1cf7663f5ff 304 fclose(fp);
noutram 1:e1cf7663f5ff 305
noutram 1:e1cf7663f5ff 306 //Close down
noutram 1:e1cf7663f5ff 307 sd.deinit();
noutram 1:e1cf7663f5ff 308 printf("Unmounted...\n");
noutram 1:e1cf7663f5ff 309 lcd.cls();
noutram 1:e1cf7663f5ff 310 lcd.printf("Unmounted...\n\n");
chills 15:c1592fc1a501 311 */
noutram 1:e1cf7663f5ff 312
noutram 1:e1cf7663f5ff 313 while(true) {
noutram 1:e1cf7663f5ff 314 greenLED = 1;
noutram 1:e1cf7663f5ff 315 wait(0.5);
noutram 1:e1cf7663f5ff 316 greenLED = 0;
noutram 1:e1cf7663f5ff 317 wait(0.1);
noutram 0:36e89e3ed7c4 318 }
noutram 0:36e89e3ed7c4 319 }
noutram 0:36e89e3ed7c4 320
noutram 1:e1cf7663f5ff 321
noutram 1:e1cf7663f5ff 322