mirror of https://github.com/ARMmbed/mbed-os.git
Revert BUFF_SIZE fix, to be fixed in another PR. Add missing property entries
parent
c8524c25be
commit
0bc8f4f726
|
@ -48,7 +48,7 @@ class FileHandle;
|
||||||
extern const char *OK;
|
extern const char *OK;
|
||||||
extern const char *CRLF;
|
extern const char *CRLF;
|
||||||
|
|
||||||
#define BUFF_SIZE 128
|
#define BUFF_SIZE 32
|
||||||
|
|
||||||
/* AT Error types enumeration */
|
/* AT Error types enumeration */
|
||||||
enum DeviceErrorType {
|
enum DeviceErrorType {
|
||||||
|
|
|
@ -37,6 +37,7 @@ static const intptr_t cellular_properties[AT_CellularDevice::PROPERTY_MAX] = {
|
||||||
1, // PROPERTY_IPV4V6_STACK
|
1, // PROPERTY_IPV4V6_STACK
|
||||||
0, // PROPERTY_NON_IP_PDP_TYPE
|
0, // PROPERTY_NON_IP_PDP_TYPE
|
||||||
1, // PROPERTY_AT_CGEREP
|
1, // PROPERTY_AT_CGEREP
|
||||||
|
1, // PROPERTY_AT_COPS_FALLBACK_AUTO
|
||||||
};
|
};
|
||||||
|
|
||||||
GENERIC_AT3GPP::GENERIC_AT3GPP(FileHandle *fh) : AT_CellularDevice(fh)
|
GENERIC_AT3GPP::GENERIC_AT3GPP(FileHandle *fh) : AT_CellularDevice(fh)
|
||||||
|
|
|
@ -37,6 +37,7 @@ static const intptr_t cellular_properties[AT_CellularDevice::PROPERTY_MAX] = {
|
||||||
0, // PROPERTY_IPV4V6_STACK
|
0, // PROPERTY_IPV4V6_STACK
|
||||||
0, // PROPERTY_NON_IP_PDP_TYPE
|
0, // PROPERTY_NON_IP_PDP_TYPE
|
||||||
1, // PROPERTY_AT_CGEREP
|
1, // PROPERTY_AT_CGEREP
|
||||||
|
1, // PROPERTY_AT_COPS_FALLBACK_AUTO
|
||||||
};
|
};
|
||||||
|
|
||||||
SARA4_PPP::SARA4_PPP(FileHandle *fh) : AT_CellularDevice(fh)
|
SARA4_PPP::SARA4_PPP(FileHandle *fh) : AT_CellularDevice(fh)
|
||||||
|
|
Loading…
Reference in New Issue