Vjezba 7-7 Dinko Djakovic - modularno programiranje

Dependencies:   mbed

Committer:
djdinko
Date:
Fri May 22 15:57:04 2015 +0000
Revision:
0:c771d4ee0a76
Vjezba 7-7

Who changed what in which revision?

UserRevisionLine numberNew contents of line
djdinko 0:c771d4ee0a76 1 // HostIO.h file for Exercise 7-7
djdinko 0:c771d4ee0a76 2 #ifndef HOSTIO_H
djdinko 0:c771d4ee0a76 3 #define HOSTIO_H
djdinko 0:c771d4ee0a76 4 #include "mbed.h"
djdinko 0:c771d4ee0a76 5 extern Serial pc; // allow pc to be manipulated by other files
djdinko 0:c771d4ee0a76 6 void HostInit(void); // function prototype
djdinko 0:c771d4ee0a76 7 char GetKeyInput(void); // function prototype
djdinko 0:c771d4ee0a76 8 #endif