takashi kadono / Mbed OS Nucleo_446

Dependencies:   ssd1331

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers TELIT_HE910.cpp Source File

TELIT_HE910.cpp

00001 /*
00002  * Copyright (c) 2017, Arm Limited and affiliates.
00003  * SPDX-License-Identifier: Apache-2.0
00004  *
00005  * Licensed under the Apache License, Version 2.0 (the "License");
00006  * you may not use this file except in compliance with the License.
00007  * You may obtain a copy of the License at
00008  *
00009  *     http://www.apache.org/licenses/LICENSE-2.0
00010  *
00011  * Unless required by applicable law or agreed to in writing, software
00012  * distributed under the License is distributed on an "AS IS" BASIS,
00013  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00014  * See the License for the specific language governing permissions and
00015  * limitations under the License.
00016  */
00017 
00018 #include "TELIT_HE910.h"
00019 #include "TELIT_HE910_CellularPower.h"
00020 #include "TELIT_HE910_CellularNetwork.h"
00021 
00022 using namespace mbed;
00023 using namespace events;
00024 
00025 static const AT_CellularBase::SupportedFeature unsupported_features[] =  {
00026     AT_CellularBase::AT_CGSN_WITH_TYPE, // HE910/UE910/UL865/UE866 AT Commands Reference Guide Rev. 11-2006-10-14
00027     AT_CellularBase::AT_CGAUTH, // HE910/UE910/UL865/UE866 AT Commands Reference Guide Rev. 11-2006-10-14
00028     AT_CellularBase::SUPPORTED_FEATURE_END_MARK
00029 };
00030 
00031 TELIT_HE910::TELIT_HE910(EventQueue &queue) : AT_CellularDevice(queue)
00032 {
00033     AT_CellularBase::set_unsupported_features(unsupported_features);
00034 }
00035 
00036 TELIT_HE910::~TELIT_HE910()
00037 {
00038 }
00039 
00040 AT_CellularNetwork *TELIT_HE910::open_network_impl(ATHandler &at)
00041 {
00042     return new TELIT_HE910_CellularNetwork(at);
00043 }
00044 
00045 AT_CellularPower *TELIT_HE910::open_power_impl(ATHandler &at)
00046 {
00047     return new TELIT_HE910_CellularPower(at);
00048 }
00049 
00050 uint16_t TELIT_HE910::get_send_delay()
00051 {
00052     return DEFAULT_DELAY_BETWEEN_AT_COMMANDS;
00053 }
00054