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.
Startup/startup.h
- Committer:
- lukeocarwright
- Date:
- 2020-05-19
- Revision:
- 14:9cfe0041cc4e
- Parent:
- 11:6ae098535da9
- Child:
- 22:028f1627c262
File content as of revision 14:9cfe0041cc4e:
#ifndef STARTUP_H #define STARTUP_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "LUTs.h" /** startup class * @author Luke Cartwright, University of Leeds * @brief: manages startup and initialisation * @date May 2020 */ volatile extern uint16_t sin_wavtable[1024]; volatile extern uint16_t tri_wavtable[1024]; volatile extern uint16_t pulse_wavtable[1024]; class startup { public: //vaiables float fl; //methods //constructor startup(); //destructior ~startup(); void initialise(N5110 &lcd, Gamepad &pad); private: }; #endif