File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed
features/cellular/framework/targets/UBLOX Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change 22
22
using namespace mbed ;
23
23
using namespace events ;
24
24
25
+ #ifdef TARGET_UBLOX_C030_R410M
26
+ static const AT_CellularBase::SupportedFeature unsupported_features[] = {
27
+ AT_CellularBase::AT_CGSN_WITH_TYPE,
28
+ AT_CellularBase::SUPPORTED_FEATURE_END_MARK
29
+ };
30
+ #endif
31
+
25
32
UBLOX_AT::UBLOX_AT (EventQueue &queue) : AT_CellularDevice(queue)
26
33
{
34
+ #ifdef TARGET_UBLOX_C030_R410M
35
+ AT_CellularBase::set_unsupported_features (unsupported_features);
36
+ #endif
27
37
}
28
38
29
39
UBLOX_AT::~UBLOX_AT ()
Original file line number Diff line number Diff line change 22
22
using namespace mbed ;
23
23
using namespace events ;
24
24
25
+ #ifdef TARGET_UBLOX_C027
26
+ static const AT_CellularBase::SupportedFeature unsupported_features[] = {
27
+ AT_CellularBase::AT_CGSN_WITH_TYPE,
28
+ AT_CellularBase::SUPPORTED_FEATURE_END_MARK
29
+ };
30
+ #endif
31
+
25
32
UBLOX_PPP::UBLOX_PPP (EventQueue &queue) : AT_CellularDevice(queue)
26
33
{
34
+ #ifdef TARGET_UBLOX_C027
35
+ AT_CellularBase::set_unsupported_features (unsupported_features);
36
+ #endif
27
37
}
28
38
29
39
UBLOX_PPP::~UBLOX_PPP ()
You can’t perform that action at this time.
0 commit comments