mDot AT-Firmware for testing

Dependencies:   MTS-Serial libmDot-mbed5

Fork of Dot-AT-Firmware by MultiTech

mts_at_debug.h

Committer:
Fran6
Date:
2017-08-14
Revision:
16:3b1d46c1db11
Parent:
14:f9a77400b622

File content as of revision 16:3b1d46c1db11:

#include "mbed.h"
#include <stdio.h>

// enable to turn on debug prints and AT commands
// #define DEBUG_MAC 1

#ifdef DEBUG_MAC
    #define MTS_RADIO_DEBUG_COMMANDS 1
    #define DEBUG_PRINTF(fmt, args...)  printf("%s:%d: "fmt, __FUNCTION__, __LINE__, ## args)
#else
    #define DEBUG_PRINTF(fmt, args...)
#endif