by Rob Toulson and Tim Wilmshurst from textbook "Fast and Effective Embedded Systems Design: Applying the ARM mbed"

Dependencies:   mbed

HostIO.h

Committer:
robt
Date:
2012-10-15
Revision:
0:507436d37d5e

File content as of revision 0:507436d37d5e:

/* Program Example 6.9: HostIO.h code for modular 7-seg keyboard controller 
                                                                           */
#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