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.
Fork of SakuraIO by
debug.h
00001 #ifndef __SAKURA_IO_DEBUG_H__ 00002 #define __SAKURA_IO_DEBUG_H__ 00003 00004 00005 #if defined(SAKURA_DEBUG) 00006 #define dbg(...) printf(__VA_ARGS__) 00007 #define dbgln(...) DEBUG_PRINTF_LN(__VA_ARGS__, "\r\n") 00008 #define DEBUG_PRINTF_LN(type, fmt, ...) printf(fmt "%s", __VA_ARGS__) 00009 #else 00010 #define dbg(...) 00011 #define dbgln(...) 00012 #endif 00013 00014 #endif //__SAKURA_IO_DEBUG_H__
Generated on Sun Jul 17 2022 01:16:21 by
1.7.2
