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.
Dependencies: F7_Ethernet mbed-rtos mbed nsdl_lib
Fork of rtos_basic by
dbg.h
00001 #ifndef DEBUG_H 00002 #define DEBUG_H 00003 00004 #include "nsdl_support.h" 00005 #include "mbed.h" 00006 00007 //Debug is disabled by default 00008 #define DEBUG 1 00009 00010 #if (DEBUG) 00011 extern Serial pc; 00012 #define NSDL_DEBUG(x, ...) pc.printf("[NSDL_DEBUG: %s:%d]" x "\r\n", __FILE__, __LINE__, ##__VA_ARGS__); 00013 #else 00014 #define NSDL_DEBUG(x, ...) 00015 #endif 00016 00017 #endif
Generated on Tue Jul 26 2022 11:47:12 by
