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@7:33cb5f2db1ee, 2020-05-05 (annotated)
- Committer:
- lukeocarwright
- Date:
- Tue May 05 14:32:04 2020 +0000
- Revision:
- 7:33cb5f2db1ee
- Child:
- 9:f6ba53e355a0
Added initial GUI for front and sorted menu bug
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
lukeocarwright | 7:33cb5f2db1ee | 1 | #ifndef STARTUP_H |
lukeocarwright | 7:33cb5f2db1ee | 2 | #define STARTUP_H |
lukeocarwright | 7:33cb5f2db1ee | 3 | |
lukeocarwright | 7:33cb5f2db1ee | 4 | #include "mbed.h" |
lukeocarwright | 7:33cb5f2db1ee | 5 | #include "N5110.h" |
lukeocarwright | 7:33cb5f2db1ee | 6 | #include "Gamepad.h" |
lukeocarwright | 7:33cb5f2db1ee | 7 | #include "LUTs.h" |
lukeocarwright | 7:33cb5f2db1ee | 8 | |
lukeocarwright | 7:33cb5f2db1ee | 9 | /** startup class |
lukeocarwright | 7:33cb5f2db1ee | 10 | * @author Luke Cartwright, University of Leeds |
lukeocarwright | 7:33cb5f2db1ee | 11 | * @brief: manages startup and initialisation |
lukeocarwright | 7:33cb5f2db1ee | 12 | * @date May 2020 |
lukeocarwright | 7:33cb5f2db1ee | 13 | */ |
lukeocarwright | 7:33cb5f2db1ee | 14 | |
lukeocarwright | 7:33cb5f2db1ee | 15 | |
lukeocarwright | 7:33cb5f2db1ee | 16 | |
lukeocarwright | 7:33cb5f2db1ee | 17 | class startup |
lukeocarwright | 7:33cb5f2db1ee | 18 | { |
lukeocarwright | 7:33cb5f2db1ee | 19 | public: |
lukeocarwright | 7:33cb5f2db1ee | 20 | //methods |
lukeocarwright | 7:33cb5f2db1ee | 21 | //constructor |
lukeocarwright | 7:33cb5f2db1ee | 22 | startup(); |
lukeocarwright | 7:33cb5f2db1ee | 23 | |
lukeocarwright | 7:33cb5f2db1ee | 24 | //destructior |
lukeocarwright | 7:33cb5f2db1ee | 25 | ~startup(); |
lukeocarwright | 7:33cb5f2db1ee | 26 | |
lukeocarwright | 7:33cb5f2db1ee | 27 | void initialise(N5110 &lcd, Gamepad &pad); |
lukeocarwright | 7:33cb5f2db1ee | 28 | |
lukeocarwright | 7:33cb5f2db1ee | 29 | private: |
lukeocarwright | 7:33cb5f2db1ee | 30 | }; |
lukeocarwright | 7:33cb5f2db1ee | 31 | |
lukeocarwright | 7:33cb5f2db1ee | 32 | #endif |