BA / Mbed OS BaBoRo1
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 TELIT_HE910::TELIT_HE910(EventQueue &queue) : AT_CellularDevice(queue)
00026 {
00027 
00028 }
00029 
00030 TELIT_HE910::~TELIT_HE910()
00031 {
00032 }
00033 
00034 CellularPower *TELIT_HE910::open_power(FileHandle *fh)
00035 {
00036     if (!_power) {
00037         ATHandler *atHandler = get_at_handler(fh);
00038         if (atHandler) {
00039             _power = new TELIT_HE910_CellularPower(*atHandler);
00040             if (!_power) {
00041                 release_at_handler(atHandler);
00042             }
00043         }
00044     }
00045     return _power;
00046 }
00047 
00048 CellularNetwork *TELIT_HE910::open_network(FileHandle *fh)
00049 {
00050     if (!_network) {
00051         ATHandler *atHandler = get_at_handler(fh);
00052         if (atHandler) {
00053             _network = new TELIT_HE910_CellularNetwork(*atHandler);
00054             if (!_network) {
00055                 release_at_handler(atHandler);
00056             }
00057         }
00058     }
00059     return _network;
00060 }