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
main.cpp@2:66a4e5d7a7cd, 2019-02-27 (annotated)
- Committer:
- ikenna1
- Date:
- Wed Feb 27 12:07:03 2019 +0000
- Revision:
- 2:66a4e5d7a7cd
- Parent:
- 1:9835d6304284
- Child:
- 3:f9cd1a38d5c6
started working on bringing the lose code i have from other files into the project. 1st one being sprite_motion
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| ikenna1 | 0:0d446aab48a6 | 1 | /* |
| ikenna1 | 0:0d446aab48a6 | 2 | ELEC2645 Embedded Systems Project |
| ikenna1 | 0:0d446aab48a6 | 3 | School of Electronic & Electrical Engineering |
| ikenna1 | 0:0d446aab48a6 | 4 | University of Leeds |
| ikenna1 | 0:0d446aab48a6 | 5 | Name: Ikenna Adrian Ozoemena |
| ikenna1 | 0:0d446aab48a6 | 6 | Username: el17aio |
| ikenna1 | 0:0d446aab48a6 | 7 | Student ID Number: 201157039 |
| ikenna1 | 0:0d446aab48a6 | 8 | Date: 20/02/2019 |
| ikenna1 | 1:9835d6304284 | 9 | */ |
| ikenna1 | 1:9835d6304284 | 10 | |
| ikenna1 | 2:66a4e5d7a7cd | 11 | ///////// pre-processor directives //////// |
| ikenna1 | 2:66a4e5d7a7cd | 12 | #include "mbed.h" |
| ikenna1 | 2:66a4e5d7a7cd | 13 | #include "Gamepad.h" |
| ikenna1 | 2:66a4e5d7a7cd | 14 | #include "N5110.h" |
| ikenna1 | 2:66a4e5d7a7cd | 15 | #include "PongEngine.h" |
| ikenna1 | 1:9835d6304284 | 16 | |
| ikenna1 | 2:66a4e5d7a7cd | 17 | #ifdef WITH_TESTING |
| ikenna1 | 2:66a4e5d7a7cd | 18 | # include "tests.h" |
| ikenna1 | 2:66a4e5d7a7cd | 19 | #endif |
| ikenna1 | 1:9835d6304284 | 20 |