Sandeep Mistry
Sandeep Mistry
So the current enum for the return value of `GSM::begin(...)` is limited to: ``` enum GSM3_NetworkStatus_t { ERROR, IDLE, CONNECTING, GSM_READY, GPRS_READY, TRANSPARENT_CONNECTED, GSM_OFF}; ``` Right now, `ERROR` is returned...
Hi @johncpang, I think there was a misunderstanding from my comment in https://github.com/arduino-libraries/MKRGSM/issues/84#issuecomment-478578459. I'm ok with adding a `getTimeout()` API, but not keen on exposing the internal state machine, to...
Hi @johncpang, Please see my comment above in https://github.com/arduino-libraries/MKRGSM/pull/86#issuecomment-488336079. If you add only `getTimeout()` that is fine with me.
Hi @tryhus, Thank you for opening this pull request, what is the advantage for this functionality? Should `write` be updated to use this?
@compunited It's not clear to me where the 3 minutes timeout you mention is in the library I'm looking [GSMUdp::endPacket](https://github.com/arduino-libraries/MKRGSM/blob/master/src/GSMUdp.cpp#L105-L156) and there is no 3 minute timeout. Can you please...
> I don't think the problem is with the library itself. @compunited ok, I suggest we follow up with u-blox support on this then. Would you be able to contact...
@FrancMunoz do you think the latest changes in master and PR #52 make things more stable?
Hi @dIoTte, This is because `TimeLib.h` contains a file named [Time.h](https://github.com/PaulStoffregen/Time/blob/master/Time.h) which on case insensitive filesystems (used by default on Mac and Windows) conflicts with the POSIX `time.h` header the...
@dIoTte I've opened to following issue to continue the discussion https://github.com/PaulStoffregen/Time/issues/74
Hi @dIoTte, Based on the discussion in https://github.com/PaulStoffregen/Time/issues/74#issuecomment-300629882, @PaulStoffregen is not keen on removing `Time.h` from the `TimeLib` library for compatibility with older IDE versions. As a work around, we...