ex

Fork of mbed-os-example-mbed5-blinky by mbed-os-examples

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers rda_log.h Source File

rda_log.h

00001 #ifndef RDA_LOG_H
00002 #define RDA_LOG_H
00003 
00004 #ifdef __cplusplus
00005 extern "C" {
00006 #endif /* __cplusplus */
00007 
00008 #include <stdio.h>
00009 
00010 #ifdef M4A_DEBUG
00011 #define M4ALOG(fmt, ...)   printf(fmt, ##__VA_ARGS__)
00012 #else
00013 #define M4ALOG(fmt, ...)
00014 #endif
00015 
00016 #ifdef __cplusplus
00017 }
00018 #endif /* __cplusplus */
00019 
00020 #endif