Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
SERCOMM/TPB23/SERCOMM_TPB23_CellularNetwork.h@46:387c2d922a4a, 2019-08-08 (annotated)
- Committer:
- Daniel_Lee
- Date:
- Thu Aug 08 08:36:54 2019 +0000
- Revision:
- 46:387c2d922a4a
- Parent:
- 45:63eba30af193
Disable unsupported properties
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Daniel_Lee | 45:63eba30af193 | 1 | /* |
| Daniel_Lee | 45:63eba30af193 | 2 | * Copyright (c) 2017, Arm Limited and affiliates. |
| Daniel_Lee | 45:63eba30af193 | 3 | * SPDX-License-Identifier: Apache-2.0 |
| Daniel_Lee | 45:63eba30af193 | 4 | * |
| Daniel_Lee | 45:63eba30af193 | 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| Daniel_Lee | 45:63eba30af193 | 6 | * you may not use this file except in compliance with the License. |
| Daniel_Lee | 45:63eba30af193 | 7 | * You may obtain a copy of the License at |
| Daniel_Lee | 45:63eba30af193 | 8 | * |
| Daniel_Lee | 45:63eba30af193 | 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| Daniel_Lee | 45:63eba30af193 | 10 | * |
| Daniel_Lee | 45:63eba30af193 | 11 | * Unless required by applicable law or agreed to in writing, software |
| Daniel_Lee | 45:63eba30af193 | 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| Daniel_Lee | 45:63eba30af193 | 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| Daniel_Lee | 45:63eba30af193 | 14 | * See the License for the specific language governing permissions and |
| Daniel_Lee | 45:63eba30af193 | 15 | * limitations under the License. |
| Daniel_Lee | 45:63eba30af193 | 16 | */ |
| Daniel_Lee | 45:63eba30af193 | 17 | |
| Daniel_Lee | 45:63eba30af193 | 18 | #ifndef SERCOMM_TPB23_CELLULAR_NETWORK_H_ |
| Daniel_Lee | 45:63eba30af193 | 19 | #define SERCOMM_TPB23_CELLULAR_NETWORK_H_ |
| Daniel_Lee | 45:63eba30af193 | 20 | |
| Daniel_Lee | 45:63eba30af193 | 21 | #include "AT_CellularNetwork.h" |
| Daniel_Lee | 45:63eba30af193 | 22 | |
| Daniel_Lee | 45:63eba30af193 | 23 | namespace mbed { |
| Daniel_Lee | 45:63eba30af193 | 24 | |
| Daniel_Lee | 45:63eba30af193 | 25 | class SERCOMM_TPB23_CellularNetwork : public AT_CellularNetwork { |
| Daniel_Lee | 45:63eba30af193 | 26 | public: |
| Daniel_Lee | 45:63eba30af193 | 27 | SERCOMM_TPB23_CellularNetwork(ATHandler &atHandler); |
| Daniel_Lee | 45:63eba30af193 | 28 | virtual ~SERCOMM_TPB23_CellularNetwork(); |
| Daniel_Lee | 45:63eba30af193 | 29 | |
| Daniel_Lee | 45:63eba30af193 | 30 | protected: |
| Daniel_Lee | 45:63eba30af193 | 31 | virtual nsapi_error_t set_access_technology_impl(RadioAccessTechnology opRat); |
| Daniel_Lee | 45:63eba30af193 | 32 | |
| Daniel_Lee | 45:63eba30af193 | 33 | }; |
| Daniel_Lee | 45:63eba30af193 | 34 | } // namespace mbed |
| Daniel_Lee | 45:63eba30af193 | 35 | #endif // SERCOMM_TPB23_CELLULAR_NETWORK_H_ |