Proj 324 Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

Committer:
chills
Date:
Wed Dec 20 15:37:12 2017 +0000
Revision:
13:db857b3744c6
Parent:
12:536eca338ae8
Child:
14:45630ba388e1
Child:
15:c1592fc1a501
2017_12_20 15:34; Mail Box implemented in all threads.; Successfully compiles.; ;

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