Gleb Klochkov / Mbed OS Climatcontroll_Main

Dependencies:   esp8266-driver

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers AT_CellularDevice_stub.cpp Source File

AT_CellularDevice_stub.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 "AT_CellularDevice.h"
00019 
00020 AT_CellularDevice::AT_CellularDevice(EventQueue &queue) :
00021     _atHandlers(0), _network(0), _sms(0), _sim(0), _power(0), _multiplexer(0), _information(0), _queue(queue)
00022 {
00023 }
00024 
00025 AT_CellularDevice::~AT_CellularDevice()
00026 {
00027 }
00028 
00029 ATHandler* AT_CellularDevice::get_at_handler(FileHandle *fileHandle)
00030 {
00031     return NULL;
00032 }
00033 
00034 void AT_CellularDevice::release_at_handler(ATHandler* at_handler)
00035 {
00036     
00037 }
00038 
00039 CellularNetwork *AT_CellularDevice::open_network(FileHandle *fh)
00040 {
00041     return NULL;
00042 }
00043 
00044 CellularSMS *AT_CellularDevice::open_sms(FileHandle *fh)
00045 {
00046     return NULL;
00047 }
00048 
00049 CellularSIM *AT_CellularDevice::open_sim(FileHandle *fh)
00050 {
00051     return NULL;
00052 }
00053 
00054 CellularPower *AT_CellularDevice::open_power(FileHandle *fh)
00055 {
00056     return NULL;
00057 }
00058 
00059 CellularMultiplexer *AT_CellularDevice::open_multiplexer(FileHandle *fh)
00060 {
00061     return NULL;
00062 }
00063 
00064 CellularInformation *AT_CellularDevice::open_information(FileHandle *fh)
00065 {
00066     return NULL;
00067 }
00068 
00069 void AT_CellularDevice::close_network()
00070 {
00071 }
00072 
00073 void AT_CellularDevice::close_sms()
00074 {
00075 }
00076 
00077 void AT_CellularDevice::close_power()
00078 {
00079 }
00080 
00081 void AT_CellularDevice::close_sim()
00082 {
00083 }
00084 
00085 void AT_CellularDevice::close_multiplexer()
00086 {
00087 }
00088 
00089 void AT_CellularDevice::close_information()
00090 {
00091 }