modify AT_CellularDevice_stub to pass test with the new feature

pull/15273/head
tobi15 2022-04-21 17:29:10 +02:00
parent 337b811ba1
commit d720db5bc8
1 changed files with 2 additions and 2 deletions

View File

@ -33,9 +33,9 @@ bool AT_CellularDevice_stub::pin_needed = false;
bool AT_CellularDevice_stub::supported_bool = false; bool AT_CellularDevice_stub::supported_bool = false;
int AT_CellularDevice_stub::max_sock_value = 1; int AT_CellularDevice_stub::max_sock_value = 1;
AT_CellularDevice::AT_CellularDevice(FileHandle *fh) : AT_CellularDevice::AT_CellularDevice(FileHandle *fh, char* delim) :
CellularDevice(), CellularDevice(),
_at(fh, _queue, get_property(AT_CellularDevice::PROPERTY_AT_SEND_DELAY), "\r"), _at(fh, _queue, get_property(AT_CellularDevice::PROPERTY_AT_SEND_DELAY), delim),
#if MBED_CONF_CELLULAR_USE_SMS #if MBED_CONF_CELLULAR_USE_SMS
_sms(0), _sms(0),
#endif // MBED_CONF_CELLULAR_USE_SMS #endif // MBED_CONF_CELLULAR_USE_SMS