BLE demo for mbed Ported RunningElectronics's SBDBT firmware for BLE. It can communicate with iOS

Dependencies:   FatFileSystem mbed

Fork of BTstack by Norimasa Okamoto

Committer:
va009039
Date:
Tue Jun 26 14:27:45 2012 +0000
Revision:
0:1ed23ab1345f
Child:
5:5fb56e13a1f9
fix overflow spp_service_buffer

Who changed what in which revision?

UserRevisionLine numberNew contents of line
va009039 0:1ed23ab1345f 1 #ifndef _MYDBG_H_
va009039 0:1ed23ab1345f 2 #define _MYDBG_H_
va009039 0:1ed23ab1345f 3 #ifdef __DEBUG
va009039 0:1ed23ab1345f 4 #include "Utils.h"
va009039 0:1ed23ab1345f 5 #define DBG(...) do{fprintf(stderr,"[%s@%d] ",__PRETTY_FUNCTION__,__LINE__);fprintf(stderr,__VA_ARGS__);} while(0);
va009039 0:1ed23ab1345f 6 #define DBG2(...) do{fprintf(stderr,"[%d] ",__LINE__);fprintf(stderr,__VA_ARGS__);} while(0);
va009039 0:1ed23ab1345f 7 #define DBG_BYTES(A,B,C) do{printf("[%s@%d] ",__PRETTY_FUNCTION__,__LINE__);printfBytes(A,B,C);}while(0);
va009039 0:1ed23ab1345f 8 #define DBG_HEX(A,B) do{printf("[%s@%d]\n",__PRETTY_FUNCTION__,__LINE__);printHex(A,B);}while(0);
va009039 0:1ed23ab1345f 9 #define DBG_LED4(A) led4.write(A)
va009039 0:1ed23ab1345f 10 #define DBG_PRINTF(...) do{fprintf(stderr,__VA_ARGS__);} while(0);
va009039 0:1ed23ab1345f 11 #else //__DEBUG
va009039 0:1ed23ab1345f 12 #define DBG(...) while(0);
va009039 0:1ed23ab1345f 13 #define DBG2(...) while(0);
va009039 0:1ed23ab1345f 14 #define DBG_BYTES(A,B,C) while(0);
va009039 0:1ed23ab1345f 15 #define DBG_HEX(A,B) while(0);
va009039 0:1ed23ab1345f 16 #define DBG_LED4(A) while(0);
va009039 0:1ed23ab1345f 17 #define DBG_PRINTF(...) while(0);
va009039 0:1ed23ab1345f 18 #endif //__DEBUG
va009039 0:1ed23ab1345f 19 #ifdef __DEBUG3
va009039 0:1ed23ab1345f 20 #define DBG3(...) do{fprintf(stderr,"[%s@%d] ",__PRETTY_FUNCTION__,__LINE__);fprintf(stderr,__VA_ARGS__);} while(0);
va009039 0:1ed23ab1345f 21
va009039 0:1ed23ab1345f 22 #else //__DEBUG3
va009039 0:1ed23ab1345f 23 #define DBG3(...) while(0);
va009039 0:1ed23ab1345f 24 #endif //__DEBUG3
va009039 0:1ed23ab1345f 25
va009039 0:1ed23ab1345f 26 #ifndef __NODEBUG
va009039 0:1ed23ab1345f 27 #define DBG_ASSERT(A) while(!(A)){fprintf(stderr,"\n\n%s@%d %s ASSERT!\n\n",__PRETTY_FUNCTION__,__LINE__,#A);exit(1);};
va009039 0:1ed23ab1345f 28 #else
va009039 0:1ed23ab1345f 29 #define DBG_ASSERT(A) while(0);
va009039 0:1ed23ab1345f 30 #endif
va009039 0:1ed23ab1345f 31
va009039 0:1ed23ab1345f 32 #define VERBOSE(...) do{printf(__VA_ARGS__);} while(0);
va009039 0:1ed23ab1345f 33
va009039 0:1ed23ab1345f 34 #endif //_MYDBG_H_