Kenji Arai / mbed-os_TYBLE16

Dependents:   TYBLE16_simple_data_logger TYBLE16_MP3_Air

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers UBLOX_AT_CellularNetwork.h Source File

UBLOX_AT_CellularNetwork.h

00001 /*
00002  * Copyright (c) 2018, 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 #ifndef UBLOX_AT_CELLULAR_NETWORK_H_
00019 #define UBLOX_AT_CELLULAR_NETWORK_H_
00020 
00021 #include "CellularLog.h"
00022 #include "drivers/Timer.h"
00023 #include "mbed_wait_api.h"
00024 #include "AT_CellularNetwork.h"
00025 #include "AT_CellularContext.h"
00026 
00027 namespace mbed {
00028 
00029 class UBLOX_AT_CellularNetwork : public AT_CellularNetwork {
00030 public:
00031     UBLOX_AT_CellularNetwork(ATHandler &atHandler, AT_CellularDevice &device);
00032     virtual ~UBLOX_AT_CellularNetwork();
00033 
00034     nsapi_error_t ubx_reboot();
00035 
00036 protected:
00037     virtual nsapi_error_t set_access_technology_impl(RadioAccessTechnology opRat);
00038 };
00039 
00040 } // namespace mbed
00041 
00042 #endif // UBLOX_AT_CELLULAR_NETWORK_H_