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.
myFuncs.h@116:8990686eedf5, 2021-10-17 (annotated)
- Committer:
- CSTritt
- Date:
- Sun Oct 17 02:15:18 2021 +0000
- Revision:
- 116:8990686eedf5
- Parent:
- 115:6ba84689e2c9
- Child:
- 117:e072f162cbce
Initial version. New in 2021.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| CSTritt | 115:6ba84689e2c9 | 1 | /* File: myFuncs.h |
| CSTritt | 115:6ba84689e2c9 | 2 | |
| CSTritt | 116:8990686eedf5 | 3 | This file declares my utility functions. Headers must match definitions. |
| CSTritt | 115:6ba84689e2c9 | 4 | |
| CSTritt | 115:6ba84689e2c9 | 5 | Created by Dr. C. S. Tritt |
| CSTritt | 116:8990686eedf5 | 6 | Last reviseed: 10/16/21 (v. 1.0) |
| CSTritt | 115:6ba84689e2c9 | 7 | */ |
| CSTritt | 115:6ba84689e2c9 | 8 | |
| CSTritt | 115:6ba84689e2c9 | 9 | // The next two lines and final endif prevents multiple inclusion. |
| CSTritt | 115:6ba84689e2c9 | 10 | #ifndef MY_FUNCS |
| CSTritt | 115:6ba84689e2c9 | 11 | #define MY_FUNCS |
| CSTritt | 115:6ba84689e2c9 | 12 | |
| CSTritt | 115:6ba84689e2c9 | 13 | // Function declarations... |
| CSTritt | 116:8990686eedf5 | 14 | void clrTerm(Serial & pc); |
| CSTritt | 116:8990686eedf5 | 15 | void blueText(Serial & pc); |
| CSTritt | 116:8990686eedf5 | 16 | void whiteText(Serial & pc); |
| CSTritt | 115:6ba84689e2c9 | 17 | // Ends if. Don't put comments in pre-processor lines. |
| CSTritt | 115:6ba84689e2c9 | 18 | #endif |