Gleb Klochkov / Mbed OS Climatcontroll_Main

Dependencies:   esp8266-driver

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers QUECTEL_BG96.cpp Source File

QUECTEL_BG96.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 "QUECTEL/BG96/QUECTEL_BG96.h"
00019 #include "QUECTEL/BG96/QUECTEL_BG96_CellularNetwork.h"
00020 #include "QUECTEL/BG96/QUECTEL_BG96_CellularStack.h"
00021 
00022 using namespace mbed;
00023 using namespace events;
00024 
00025 #define CONNECT_DELIM         "\r\n"
00026 #define CONNECT_BUFFER_SIZE   (1280 + 80 + 80) // AT response + sscanf format
00027 #define CONNECT_TIMEOUT       8000
00028 
00029 #define MAX_STARTUP_TRIALS 5
00030 #define MAX_RESET_TRIALS 5
00031 
00032 QUECTEL_BG96::QUECTEL_BG96(EventQueue &queue) : AT_CellularDevice(queue)
00033 {
00034 }
00035 
00036 QUECTEL_BG96::~QUECTEL_BG96()
00037 {
00038 }
00039 
00040 CellularNetwork *QUECTEL_BG96::open_network(FileHandle *fh)
00041 {
00042     if (!_network) {
00043         ATHandler *atHandler = get_at_handler(fh);
00044         if (atHandler) {
00045             _network = new QUECTEL_BG96_CellularNetwork(*atHandler);
00046             if (!_network) {
00047                 release_at_handler(atHandler);
00048             }
00049         }
00050     }
00051     return _network;
00052 }