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.
Diff: GraphicsDisplay.cpp
- Revision:
- 40:04aa280dfa39
- Parent:
- 37:f19b7e7449dc
- Child:
- 41:2956a0a221e5
--- a/GraphicsDisplay.cpp Sun Jan 26 02:02:29 2014 +0000 +++ b/GraphicsDisplay.cpp Tue Feb 04 02:58:06 2014 +0000 @@ -20,7 +20,7 @@ #define INFO(x, ...) std::printf("[INF %s %3d] "x"\r\n", DEBUG, __LINE__, ##__VA_ARGS__); #define WARN(x, ...) std::printf("[WRN %s %3d] "x"\r\n", DEBUG, __LINE__, ##__VA_ARGS__); #define ERR(x, ...) std::printf("[ERR %s %3d] "x"\r\n", DEBUG, __LINE__, ##__VA_ARGS__); -void HexDump(char * title, uint8_t * p, int count) +static void HexDump(char * title, uint8_t * p, int count) { int i; char buf[100] = "0000: ";