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
- Committer:
- dpavetic
- Date:
- 2022-11-05
- Revision:
- 1:d11c2cd28a8b
- Parent:
- 0:76a5bc96dddd
File content as of revision 1:d11c2cd28a8b:
// HostIO.h file for Exercise 7-7
#ifndef HOSTIO_H
#define HOSTIO_H
#include "mbed.h"
extern Serial pc; // allow pc to be manipulated by other files
void HostInit(void); // function prototype
char GetKeyInput(void); // function prototype
#endif