Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of ELEC351 by
LED_LOGGING.hpp
- Committer:
- thomasmorris
- Date:
- 2018-08-15
- Revision:
- 57:aba1296e51b1
- Parent:
- 52:99915f5240b2
File content as of revision 57:aba1296e51b1:
/* This is where we define and declare LED logging states */ #ifndef LED_LOGGING_HPP//Header Guards Prevents Multiple includes #define LED_LOGGING_HPP //Libraries and header includes #include "mbed.h" #include "rtos.h" #include "THREADS.hpp" #include "LED.hpp" static LED Yellow_led(PB_10); //Yellow LED object extern volatile int Log_Value; //Value of the Log extern void Log_Leds(); //Log Leds function #endif