Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
9 years, 7 months ago.
Programming Error: Line 534 (MDM.h)
I tried compiling with a C++11 compliant toolchain and it found a bad argument name in the MDM.h file:
Line 534:
static int _cbCUSD(int type, const char* buf, int len, char* buf);
Should be (to match definition in MDM.cpp):
static int _cbCUSD(int type, const char* buf, int len, char* resp);
(reason: early compilers don't take notice of the argument names, just the types and positions).
Question relating to:
1 Answer
9 years, 7 months ago.
Hello,
can you send a pull request to fix it? Thanks !