AT command firmware for MultiTech Dot devices.

Fork of mDot_AT_firmware by MultiTech

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mts_at_debug.h Source File

mts_at_debug.h

00001 #include "mbed.h"
00002 #include <stdio.h>
00003 
00004 // enable to turn on debug prints and AT commands
00005 // #define DEBUG_MAC 1
00006 
00007 #ifdef DEBUG_MAC
00008     #define MTS_RADIO_DEBUG_COMMANDS 1
00009     #define DEBUG_PRINTF(fmt, args...)  printf("%s:%d: "fmt, __FUNCTION__, __LINE__, ## args)
00010 #else
00011     #define DEBUG_PRINTF(fmt, args...)
00012 #endif