Proj 324 Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

Committer:
chills
Date:
Sun Dec 24 14:15:57 2017 +0000
Revision:
15:c1592fc1a501
Parent:
13:db857b3744c6
Child:
16:067916791a25
2017_12_24 14:13; Mail box working.

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