Proj 324 Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

Committer:
chills
Date:
Sun Dec 24 15:23:14 2017 +0000
Revision:
16:067916791a25
Parent:
15:c1592fc1a501
Child:
17:37d883f40c3d
2017_12_24 15:20; Working mailbox, all threads.

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];
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 16:067916791a25 72 Mail<DATA, mailsize> 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 16:067916791a25 87
chills 16:067916791a25 88 mail_box.free(Rec_Data_Network);
chills 13:db857b3744c6 89
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 13:db857b3744c6 105 DATA *Rec_Data_SD = (DATA*)evt_sd.value.p;
chills 13:db857b3744c6 106 DATA msg_sd;
chills 13:db857b3744c6 107
chills 13:db857b3744c6 108 msg_sd.set_time(Rec_Data_SD->get_time());
chills 13:db857b3744c6 109 msg_sd.set_temperature(Rec_Data_SD->get_temperature());
chills 13:db857b3744c6 110 msg_sd.set_pressure(Rec_Data_SD->get_pressure());
chills 13:db857b3744c6 111 msg_sd.set_light(Rec_Data_SD->get_light());
chills 16:067916791a25 112
chills 16:067916791a25 113 mail_box.free(Rec_Data_SD);
chills 13:db857b3744c6 114 }
thomasmorris 12:536eca338ae8 115 }
thomasmorris 7:dfe19413fdc2 116 //Interrupt service routive for SW1 falling edge (release)
thomasmorris 7:dfe19413fdc2 117 void SW1FallingEdge() {
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
thomasmorris 7:dfe19413fdc2 130 void ModeSelection()
thomasmorris 7:dfe19413fdc2 131 {
thomasmorris 7:dfe19413fdc2 132 while(1){
chills 13:db857b3744c6 133
chills 16:067916791a25 134 //Thread::wait(1000);
chills 13:db857b3744c6 135
chills 13:db857b3744c6 136 osEvent evt_lcd = mail_box.get(); //Get the latest entry from "mail_box"
chills 13:db857b3744c6 137
chills 13:db857b3744c6 138 if (evt_lcd.status == osEventMail)
thomasmorris 7:dfe19413fdc2 139 {
chills 13:db857b3744c6 140 DATA *Rec_Data_LCD = (DATA*)evt_lcd.value.p;
chills 13:db857b3744c6 141 DATA msg_lcd;
chills 13:db857b3744c6 142
chills 13:db857b3744c6 143 msg_lcd.set_time(Rec_Data_LCD->get_time());
chills 13:db857b3744c6 144 msg_lcd.set_temperature(Rec_Data_LCD->get_temperature());
chills 13:db857b3744c6 145 msg_lcd.set_pressure(Rec_Data_LCD->get_pressure());
chills 13:db857b3744c6 146 msg_lcd.set_light(Rec_Data_LCD->get_light());
chills 13:db857b3744c6 147
chills 16:067916791a25 148 mail_box.free(Rec_Data_LCD);
chills 13:db857b3744c6 149
chills 13:db857b3744c6 150 if(mode == 0)//Print values to the LCD
chills 13:db857b3744c6 151 {
chills 13:db857b3744c6 152 //Write new data to LCD (not fast!)
chills 13:db857b3744c6 153 lcd.cls();
chills 13:db857b3744c6 154 lcd.printf("Temp Pres li\n");
chills 13:db857b3744c6 155 lcd.printf("%1.1f ", msg_lcd.get_temperature()); //Print Temperature to LCD
chills 13:db857b3744c6 156 lcd.printf("%1.1f ", msg_lcd.get_pressure()); //Print Pressure to LCD
chills 13:db857b3744c6 157 lcd.printf("%1.1f\n", msg_lcd.get_light()); //Print Light to LCD
chills 13:db857b3744c6 158 }
chills 13:db857b3744c6 159 else if(mode == 1)//Print the Time to the LCD
chills 13:db857b3744c6 160 {
chills 13:db857b3744c6 161 lcd.cls(); //Write new data to LCD (not fast!)
chills 13:db857b3744c6 162 lcd.printf("Current Time:%s", 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 13:db857b3744c6 180 DATA *Rec_Data_Serial = (DATA*)evt_serial.value.p;
chills 13:db857b3744c6 181 DATA msg_serial;
chills 11:e7b5ed6cd3cf 182
chills 13:db857b3744c6 183 msg_serial.set_time(Rec_Data_Serial->get_time());
chills 13:db857b3744c6 184 msg_serial.set_temperature(Rec_Data_Serial->get_temperature());
chills 13:db857b3744c6 185 msg_serial.set_pressure(Rec_Data_Serial->get_pressure());
chills 13:db857b3744c6 186 msg_serial.set_light(Rec_Data_Serial->get_light());
chills 11:e7b5ed6cd3cf 187
chills 16:067916791a25 188 mail_box.free(Rec_Data_Serial);
chills 16:067916791a25 189
chills 15:c1592fc1a501 190 time_t scom_time = msg_serial.get_time();
chills 15:c1592fc1a501 191 strftime(scom_time_buffer, 32, "%I:%M %p\t", localtime(&scom_time));
chills 15:c1592fc1a501 192 pc.printf("Time = %s", scom_time_buffer);
chills 15:c1592fc1a501 193
chills 13:db857b3744c6 194 pc.printf("Temperature = %f\t", msg_serial.get_temperature()); //Print Temperature
chills 13:db857b3744c6 195 pc.printf("Pressure = %f\t", msg_serial.get_pressure()); //Print Pressure
chills 13:db857b3744c6 196 pc.printf("Light = %f\n\r", msg_serial.get_light()); //Print Light
chills 10:46946784326d 197 }
thomasmorris 7:dfe19413fdc2 198 Green_led.Toggle();
chills 16:067916791a25 199 //Thread::wait(1000);
thomasmorris 5:2594b953f111 200 }
thomasmorris 5:2594b953f111 201 }
thomasmorris 5:2594b953f111 202
chills 10:46946784326d 203 void Sample_signal_set() //Sets the Signal for when to sample the sensors
thomasmorris 5:2594b953f111 204 {
chills 10:46946784326d 205 t1.signal_set(SamplingTime); //Set the sampling thread signal high
thomasmorris 5:2594b953f111 206 }
noutram 3:a88838ff33e7 207
chills 10:46946784326d 208
thomasmorris 5:2594b953f111 209 void Sample()//Samples the hardware and prints the result to the LCD
thomasmorris 5:2594b953f111 210 {
thomasmorris 5:2594b953f111 211 while(1)
thomasmorris 5:2594b953f111 212 {
chills 10:46946784326d 213 Thread::signal_wait(SamplingTime); //Set the time between samples
chills 10:46946784326d 214
chills 10:46946784326d 215 temp = sensor.getTemperature(); //Read Temperature
chills 10:46946784326d 216 pressure = sensor.getPressure(); //Read Pressure
chills 10:46946784326d 217 lux = adcIn.read(); //Read Light
chills 16:067916791a25 218 time_t buffer_time = time(NULL); //Read Time
thomasmorris 7:dfe19413fdc2 219
chills 16:067916791a25 220 DATA *Send_Data = mail_box.alloc(); //Allocate a block from the memory pool, Type Data
thomasmorris 5:2594b953f111 221
chills 16:067916791a25 222 if (Send_Data == NULL){ //If Data is empty
chills 16:067916791a25 223 //pc.printf("Out of memory\n\r"); //Print out of memory warning
chills 10:46946784326d 224 return;
chills 10:46946784326d 225 }
chills 10:46946784326d 226
chills 10:46946784326d 227 Send_Data->set_time(buffer_time); //Pass in Time
chills 10:46946784326d 228 Send_Data->set_temperature(temp); //Pass in Temp
chills 10:46946784326d 229 Send_Data->set_pressure(pressure); //Pass in Pres
chills 10:46946784326d 230 Send_Data->set_light(lux); //Pass in Light
chills 10:46946784326d 231
chills 10:46946784326d 232 osStatus stat = mail_box.put(Send_Data); //Puts "Send_Data" into the mailbox
chills 10:46946784326d 233
chills 10:46946784326d 234 if (stat == osErrorResource){ //If mailbox overfills
chills 10:46946784326d 235 //pc.printf("queue->put() Error code: %4Xh, Resource not available\r\n", stat); //Print error message
chills 10:46946784326d 236 mail_box.free(Send_Data); //Free the mail box
chills 10:46946784326d 237 return;
chills 10:46946784326d 238 }
thomasmorris 5:2594b953f111 239 Red_led.Toggle();
thomasmorris 5:2594b953f111 240 t1.signal_set(NotSamplingTime);
thomasmorris 5:2594b953f111 241 }
thomasmorris 5:2594b953f111 242 }
thomasmorris 5:2594b953f111 243
thomasmorris 5:2594b953f111 244 int main()
thomasmorris 5:2594b953f111 245 {
noutram 1:e1cf7663f5ff 246 //Greeting
chills 16:067916791a25 247 pc.printf("Test Start");
chills 16:067916791a25 248 pc.printf("\n\r");
chills 16:067916791a25 249
chills 10:46946784326d 250 set_time(1512940530); //Set RTC time to December 10 2017
chills 10:46946784326d 251 pc.baud(9600); //Sets the Serial Comms Baud Rate
thomasmorris 5:2594b953f111 252
chills 15:c1592fc1a501 253 /*
chills 10:46946784326d 254 post(); //Power on Self Test
noutram 1:e1cf7663f5ff 255
noutram 3:a88838ff33e7 256 //Initialise the SD card (this needs to move)
noutram 1:e1cf7663f5ff 257 if ( sd.init() != 0) {
noutram 1:e1cf7663f5ff 258 printf("Init failed \n");
noutram 3:a88838ff33e7 259 lcd.cls();
noutram 3:a88838ff33e7 260 lcd.printf("CANNOT INIT SD");
noutram 1:e1cf7663f5ff 261 errorCode(FATAL);
noutram 1:e1cf7663f5ff 262 }
noutram 1:e1cf7663f5ff 263
noutram 1:e1cf7663f5ff 264 //Create a filing system for SD Card
noutram 1:e1cf7663f5ff 265 FATFileSystem fs("sd", &sd);
noutram 0:36e89e3ed7c4 266
noutram 1:e1cf7663f5ff 267 //Open to WRITE
noutram 1:e1cf7663f5ff 268 FILE* fp = fopen("/sd/test.csv","a");
noutram 1:e1cf7663f5ff 269 if (fp == NULL) {
noutram 1:e1cf7663f5ff 270 error("Could not open file for write\n");
noutram 3:a88838ff33e7 271 lcd.cls();
noutram 3:a88838ff33e7 272 lcd.printf("CANNOT OPEN FILE\n\n");
noutram 1:e1cf7663f5ff 273 errorCode(FATAL);
noutram 1:e1cf7663f5ff 274 }
noutram 3:a88838ff33e7 275
noutram 3:a88838ff33e7 276 //Last message before sampling begins
noutram 3:a88838ff33e7 277 lcd.cls();
noutram 3:a88838ff33e7 278 lcd.printf("READY\n\n");
chills 15:c1592fc1a501 279 */
thomasmorris 5:2594b953f111 280
thomasmorris 5:2594b953f111 281 //Run interrupt
thomasmorris 5:2594b953f111 282 Sample_timer.attach(&Sample_signal_set,TimerInterval);
thomasmorris 7:dfe19413fdc2 283 SW1.fall(&SW1FallingEdge);
thomasmorris 5:2594b953f111 284 //Run Threads
thomasmorris 5:2594b953f111 285
thomasmorris 5:2594b953f111 286 t1.start(Sample);
thomasmorris 5:2594b953f111 287 t2.start(Serial_Comms);
chills 16:067916791a25 288 t5.start(ModeSelection);
chills 15:c1592fc1a501 289 //t6.start(Network);
thomasmorris 5:2594b953f111 290 //Main thread ID
thomasmorris 5:2594b953f111 291
thomasmorris 5:2594b953f111 292 idMain = osThreadGetId(); //CMSIS RTOS call
thomasmorris 5:2594b953f111 293
thomasmorris 5:2594b953f111 294 //Thread ID
thomasmorris 5:2594b953f111 295 id1 = t1.gettid();
thomasmorris 5:2594b953f111 296 id2 = t2.gettid();
thomasmorris 8:0e4481b64353 297 //id5 = t5.gettid();
thomasmorris 5:2594b953f111 298
thomasmorris 5:2594b953f111 299 //Toggle Green LED after a button has been pressed
noutram 1:e1cf7663f5ff 300 //Press either switch to unmount
thomasmorris 7:dfe19413fdc2 301 DigitalIn onBoardSwitch(USER_BUTTON);
thomasmorris 7:dfe19413fdc2 302 while (onBoardSwitch == 0){
thomasmorris 7:dfe19413fdc2 303
noutram 1:e1cf7663f5ff 304 }
noutram 1:e1cf7663f5ff 305
noutram 1:e1cf7663f5ff 306 //Close File
chills 15:c1592fc1a501 307 /*
noutram 1:e1cf7663f5ff 308 fclose(fp);
noutram 1:e1cf7663f5ff 309
noutram 1:e1cf7663f5ff 310 //Close down
noutram 1:e1cf7663f5ff 311 sd.deinit();
noutram 1:e1cf7663f5ff 312 printf("Unmounted...\n");
noutram 1:e1cf7663f5ff 313 lcd.cls();
noutram 1:e1cf7663f5ff 314 lcd.printf("Unmounted...\n\n");
chills 15:c1592fc1a501 315 */
noutram 1:e1cf7663f5ff 316
noutram 1:e1cf7663f5ff 317 while(true) {
noutram 1:e1cf7663f5ff 318 greenLED = 1;
noutram 1:e1cf7663f5ff 319 wait(0.5);
noutram 1:e1cf7663f5ff 320 greenLED = 0;
noutram 1:e1cf7663f5ff 321 wait(0.1);
noutram 0:36e89e3ed7c4 322 }
noutram 0:36e89e3ed7c4 323 }
noutram 0:36e89e3ed7c4 324
noutram 1:e1cf7663f5ff 325
noutram 1:e1cf7663f5ff 326