For Terrance

Dependencies:   mbed

Committer:
emh203
Date:
Wed Jun 13 15:10:06 2012 +0000
Revision:
0:085749c8446f

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
emh203 0:085749c8446f 1 #ifndef SERIAL_H
emh203 0:085749c8446f 2 #define SERIAL_H
emh203 0:085749c8446f 3
emh203 0:085749c8446f 4 #define PC_BACKDOOR_TX_QUEUE_SIZE 2048
emh203 0:085749c8446f 5 #define PC_BACKDOOR_RX_QUEUE_SIZE 128
emh203 0:085749c8446f 6 extern ByteQueue PCBackDoorTx,PCBackDoorRx;
emh203 0:085749c8446f 7
emh203 0:085749c8446f 8 extern Serial PCBackDoor;
emh203 0:085749c8446f 9 void InitPCBackDoor();
emh203 0:085749c8446f 10
emh203 0:085749c8446f 11 #endif
emh203 0:085749c8446f 12