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.
HostIO.h@0:76a5bc96dddd, 2022-11-05 (annotated)
- Committer:
- dpavetic
- Date:
- Sat Nov 05 07:35:08 2022 +0000
- Revision:
- 0:76a5bc96dddd
Pavetic HostIO lib
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| dpavetic | 0:76a5bc96dddd | 1 | // HostIO.h file for Exercise 7-7 |
| dpavetic | 0:76a5bc96dddd | 2 | #ifndef HOSTIO_H |
| dpavetic | 0:76a5bc96dddd | 3 | #define HOSTIO_H |
| dpavetic | 0:76a5bc96dddd | 4 | #include "mbed.h" |
| dpavetic | 0:76a5bc96dddd | 5 | extern Serial pc; // allow pc to be manipulated by other files |
| dpavetic | 0:76a5bc96dddd | 6 | void HostInit(void); // function prototype |
| dpavetic | 0:76a5bc96dddd | 7 | char GetKeyInput(void); // function prototype |
| dpavetic | 0:76a5bc96dddd | 8 | #endif |