nguyen hoang / Mbed OS Dot-AT-Firmware-Khang1810218

Dependencies:   MTS-Serial libmDot-dev-mbed5-deprecated

Committer:
nguyenhoang9x5555
Date:
Thu Oct 18 04:18:48 2018 +0000
Revision:
0:3c869a8cb8f8
DOT AT FIRMWARE 18102018

Who changed what in which revision?

UserRevisionLine numberNew contents of line
nguyenhoang9x5555 0:3c869a8cb8f8 1 #include "mbed.h"
nguyenhoang9x5555 0:3c869a8cb8f8 2 #include <stdio.h>
nguyenhoang9x5555 0:3c869a8cb8f8 3
nguyenhoang9x5555 0:3c869a8cb8f8 4 // enable to turn on debug prints and AT commands
nguyenhoang9x5555 0:3c869a8cb8f8 5 // #define DEBUG_MAC 1
nguyenhoang9x5555 0:3c869a8cb8f8 6
nguyenhoang9x5555 0:3c869a8cb8f8 7 #ifdef DEBUG_MAC
nguyenhoang9x5555 0:3c869a8cb8f8 8 #define MTS_RADIO_DEBUG_COMMANDS 1
nguyenhoang9x5555 0:3c869a8cb8f8 9 #define DEBUG_PRINTF(fmt, args...) printf("%s:%d: "fmt, __FUNCTION__, __LINE__, ## args)
nguyenhoang9x5555 0:3c869a8cb8f8 10 #else
nguyenhoang9x5555 0:3c869a8cb8f8 11 #define DEBUG_PRINTF(fmt, args...)
nguyenhoang9x5555 0:3c869a8cb8f8 12 #endif