Charles Tritt / Mbed OS 21_SerialPass_v5
Committer:
CSTritt
Date:
Wed Oct 13 13:08:42 2021 +0000
Revision:
115:6ba84689e2c9
Child:
116:8990686eedf5
Not working. Causes runtime error.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
CSTritt 115:6ba84689e2c9 1 /* File: myFuncs.h
CSTritt 115:6ba84689e2c9 2
CSTritt 115:6ba84689e2c9 3 This file declares my utility functions.
CSTritt 115:6ba84689e2c9 4
CSTritt 115:6ba84689e2c9 5 Created by Dr. C. S. Tritt
CSTritt 115:6ba84689e2c9 6 Last reviseed: 10/13/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 115:6ba84689e2c9 14 void clrTerm(Serial *);
CSTritt 115:6ba84689e2c9 15
CSTritt 115:6ba84689e2c9 16 // Ends if. Don't put comments in pre-processor lines.
CSTritt 115:6ba84689e2c9 17 #endif