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.
Terminal.h
00001 #include "MODSERIAL.h" 00002 00003 #ifndef TERMINAL_H_ 00004 #define TERMINAL_H_ 00005 00006 void ProcessTerminal(); 00007 void InitTerminal(); 00008 00009 extern MODSERIAL pc; 00010 00011 00012 #define TERMINAL_PRINTF(...) pc.printf(__VA_ARGS__) 00013 #define TERMINAL_PUTC(c) pc.putc(c) 00014 #define TERMINAL_READABLE pc.readable() 00015 #define TERMINAL_GETC pc.getc() 00016 00017 #endif /* TERMINAL_H_ */
Generated on Sat Jul 16 2022 16:37:46 by
1.7.2