mirror of https://github.com/ARMmbed/mbed-os.git
modify method signatures to pass astyle tests
parent
d720db5bc8
commit
73f2dd6379
|
@ -67,7 +67,7 @@ public:
|
||||||
};
|
};
|
||||||
|
|
||||||
public:
|
public:
|
||||||
AT_CellularDevice(FileHandle *fh, char* delim = "\r");
|
AT_CellularDevice(FileHandle *fh, char *delim = "\r");
|
||||||
virtual ~AT_CellularDevice();
|
virtual ~AT_CellularDevice();
|
||||||
|
|
||||||
virtual nsapi_error_t clear();
|
virtual nsapi_error_t clear();
|
||||||
|
|
|
@ -39,7 +39,7 @@ using namespace std::chrono_literals;
|
||||||
#define DEFAULT_AT_TIMEOUT 1s // at default timeout
|
#define DEFAULT_AT_TIMEOUT 1s // at default timeout
|
||||||
const int MAX_SIM_RESPONSE_LENGTH = 16;
|
const int MAX_SIM_RESPONSE_LENGTH = 16;
|
||||||
|
|
||||||
AT_CellularDevice::AT_CellularDevice(FileHandle *fh, char* delim):
|
AT_CellularDevice::AT_CellularDevice(FileHandle *fh, char *delim):
|
||||||
CellularDevice(),
|
CellularDevice(),
|
||||||
_at(fh, _queue, DEFAULT_AT_TIMEOUT, delim),
|
_at(fh, _queue, DEFAULT_AT_TIMEOUT, delim),
|
||||||
#if MBED_CONF_CELLULAR_USE_SMS
|
#if MBED_CONF_CELLULAR_USE_SMS
|
||||||
|
|
|
@ -33,7 +33,7 @@ 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, char* delim) :
|
AT_CellularDevice::AT_CellularDevice(FileHandle *fh, char *delim) :
|
||||||
CellularDevice(),
|
CellularDevice(),
|
||||||
_at(fh, _queue, get_property(AT_CellularDevice::PROPERTY_AT_SEND_DELAY), delim),
|
_at(fh, _queue, get_property(AT_CellularDevice::PROPERTY_AT_SEND_DELAY), delim),
|
||||||
#if MBED_CONF_CELLULAR_USE_SMS
|
#if MBED_CONF_CELLULAR_USE_SMS
|
||||||
|
|
Loading…
Reference in New Issue