Skip to content

Commit fb8dc9d

Browse files
authored
Merge pull request #825 from pennam/gsm_debug_warnings
GSMDebug: fix warning case value not in enumerated type
2 parents f0f0252 + fcdade6 commit fb8dc9d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libraries/GSM/src/GSMDebug.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -188,14 +188,16 @@ const char * arduino::GSMClass::getRegistrationStateString(const mbed::CellularN
188188

189189
void arduino::GSMClass::onStatusChange(nsapi_event_t ev, intptr_t in) {
190190

191-
if(ev == CellularStateRetryEvent) {
191+
cellular_event_status event = (cellular_event_status)ev;
192+
193+
if(event == CellularStateRetryEvent) {
192194
feedWatchdog();
193195
}
194196

195197
#if GSM_DEBUG_ENABLE
196198
const cell_callback_data_t *data = (const cell_callback_data_t *)in;
197199

198-
switch(ev)
200+
switch(event)
199201
{
200202
case CellularDeviceReady:
201203
{

0 commit comments

Comments
 (0)