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 SDFileSystem
main.cpp@2:17a5c34b3a79, 2019-07-09 (annotated)
- Committer:
- epremeaux
- Date:
- Tue Jul 09 02:23:18 2019 +0000
- Revision:
- 2:17a5c34b3a79
- Parent:
- 0:b471f7764d46
Added SD card examples. Had to roll back the MBED library to maintain SDFileSystem compatability
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
epremeaux | 0:b471f7764d46 | 1 | /******************************************************************* |
epremeaux | 0:b471f7764d46 | 2 | * Examples collection |
epremeaux | 0:b471f7764d46 | 3 | * By: Emery Premeaux |
epremeaux | 0:b471f7764d46 | 4 | * Date: July 2019 |
epremeaux | 0:b471f7764d46 | 5 | * Idea: https://os.mbed.com/questions/5956/How-do-I-put-multiple-example-cpp-files-/ |
epremeaux | 0:b471f7764d46 | 6 | * |
epremeaux | 0:b471f7764d46 | 7 | * For: STM32, Nucleo F401 etc |
epremeaux | 0:b471f7764d46 | 8 | * Version: 0 |
epremeaux | 0:b471f7764d46 | 9 | * |
epremeaux | 0:b471f7764d46 | 10 | * |
epremeaux | 0:b471f7764d46 | 11 | * USAGE: |
epremeaux | 0:b471f7764d46 | 12 | * Just uncomment one program from the buildOptions.h file. Comment all others |
epremeaux | 0:b471f7764d46 | 13 | * |
epremeaux | 0:b471f7764d46 | 14 | *******************************************************************/ |
epremeaux | 0:b471f7764d46 | 15 | |
epremeaux | 0:b471f7764d46 | 16 | #include "mbed.h" |
epremeaux | 0:b471f7764d46 | 17 | #include "buildOptions.h" |
epremeaux | 0:b471f7764d46 | 18 | |
epremeaux | 0:b471f7764d46 | 19 | /* |
epremeaux | 0:b471f7764d46 | 20 | * We can define some common hardware for your particular board here which |
epremeaux | 0:b471f7764d46 | 21 | * will then be applied to any sketch. You will need to redefine these |
epremeaux | 0:b471f7764d46 | 22 | * for each board you use, or wrap them in #ifDef statements |
epremeaux | 0:b471f7764d46 | 23 | */ |
epremeaux | 0:b471f7764d46 | 24 | |
epremeaux | 0:b471f7764d46 | 25 |