Proj 324 Final

Fork of ELEC351_Group_T by Plymouth ELEC351 Group T

Committer:
thomasmorris
Date:
Wed Aug 15 21:34:59 2018 +0000
Revision:
57:aba1296e51b1
Parent:
52:99915f5240b2
Final Version

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thomasmorris 52:99915f5240b2 1 /*
thomasmorris 52:99915f5240b2 2 This is where we define and declare LED logging states
thomasmorris 52:99915f5240b2 3 */
thomasmorris 52:99915f5240b2 4 #ifndef LED_LOGGING_HPP//Header Guards Prevents Multiple includes
thomasmorris 52:99915f5240b2 5 #define LED_LOGGING_HPP
thomasmorris 52:99915f5240b2 6 //Libraries and header includes
thomasmorris 52:99915f5240b2 7 #include "mbed.h"
thomasmorris 52:99915f5240b2 8 #include "rtos.h"
thomasmorris 52:99915f5240b2 9 #include "THREADS.hpp"
thomasmorris 52:99915f5240b2 10 #include "LED.hpp"
thomasmorris 52:99915f5240b2 11
thomasmorris 52:99915f5240b2 12 static LED Yellow_led(PB_10); //Yellow LED object
thomasmorris 52:99915f5240b2 13 extern volatile int Log_Value; //Value of the Log
thomasmorris 52:99915f5240b2 14 extern void Log_Leds(); //Log Leds function
thomasmorris 52:99915f5240b2 15 #endif