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.
Dependencies: mbed mbed-rtos ShiftReg TextLCD
Setup.hpp
- Committer:
- thomasmorris
- Date:
- 2019-04-10
- Revision:
- 3:3700f0c29710
- Child:
- 4:1ef122d47bf3
File content as of revision 3:3700f0c29710:
#ifndef _SETUP_HPP_
#define _SETUP_HPP_
//Libraries
#include "mbed.h"
#include "rtos.h" //Real Time Operating System. https://os.mbed.com/handbook/RTOS
#include "ShiftReg.h"
//Header Files
#include "Post.hpp"
#include "Interface.hpp"
#include "Power.hpp"
#include "Post.hpp"
//Digital Outputs
extern DigitalOut myled; //Onboard LED
//Class instances
extern POWER POWER_1;
extern INTERFACE INTERFACE_1;
//ShiftReg SR1(PA_12, PA_11, PA_10); //data, store, clock
static Thread Serial_Thread;
#endif //_SETUP_HPP_