This Library is to establish communication between a transmitter and receivers formed by the combination of SX1272MB2DAS shield and FRDM kl25z board that uses Cortex M0+ architecture.
Fork of SX1272Lib by
Revision 8:e44f96ae13d5, committed 2018-04-11
- Comitter:
- ashutoshns
- Date:
- Wed Apr 11 15:59:33 2018 +0000
- Parent:
- 7:b988b60083a1
- Commit message:
- debug changed to debugg. defining the function as debug was giving error.
Changed in this revision
debug/debug.h | Show annotated file Show diff for this revision Revisions of this file |
diff -r b988b60083a1 -r e44f96ae13d5 debug/debug.h --- a/debug/debug.h Mon Apr 24 09:26:08 2017 +0000 +++ b/debug/debug.h Wed Apr 11 15:59:33 2018 +0000 @@ -30,7 +30,7 @@ * * @param format printf-style format string, followed by variables */ -static inline void debug(const char *format, ...) { +static inline void debugg(const char *format, ...) { va_list args; va_start(args, format); vfprintf(stderr, format, args); @@ -53,8 +53,8 @@ #else -static inline void debug(const char *format, ...) {} -static inline void debug(bool condition, const char *format, ...) {} +static inline void debugg(const char *format, ...) {} +static inline void debugg(bool condition, const char *format, ...) {} #endif