Daniel Vizcaya / Mbed OS 04_RTOS_Embebidos
Committer:
Bethory
Date:
Wed May 30 00:01:50 2018 +0000
Revision:
0:6ad07c9019fd
Codigo de tales para todos los pasculaes

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Bethory 0:6ad07c9019fd 1 /*
Bethory 0:6ad07c9019fd 2 * Copyright (c) 2018, Arm Limited and affiliates.
Bethory 0:6ad07c9019fd 3 * SPDX-License-Identifier: Apache-2.0
Bethory 0:6ad07c9019fd 4 *
Bethory 0:6ad07c9019fd 5 * Licensed under the Apache License, Version 2.0 (the "License");
Bethory 0:6ad07c9019fd 6 * you may not use this file except in compliance with the License.
Bethory 0:6ad07c9019fd 7 * You may obtain a copy of the License at
Bethory 0:6ad07c9019fd 8 *
Bethory 0:6ad07c9019fd 9 * http://www.apache.org/licenses/LICENSE-2.0
Bethory 0:6ad07c9019fd 10 *
Bethory 0:6ad07c9019fd 11 * Unless required by applicable law or agreed to in writing, software
Bethory 0:6ad07c9019fd 12 * distributed under the License is distributed on an "AS IS" BASIS,
Bethory 0:6ad07c9019fd 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Bethory 0:6ad07c9019fd 14 * See the License for the specific language governing permissions and
Bethory 0:6ad07c9019fd 15 * limitations under the License.
Bethory 0:6ad07c9019fd 16 */
Bethory 0:6ad07c9019fd 17 #ifndef TEST_AT_CELLULARBASE_H
Bethory 0:6ad07c9019fd 18 #define TEST_AT_CELLULARBASE_H
Bethory 0:6ad07c9019fd 19
Bethory 0:6ad07c9019fd 20 class Test_AT_CellularBase
Bethory 0:6ad07c9019fd 21 {
Bethory 0:6ad07c9019fd 22 public:
Bethory 0:6ad07c9019fd 23 Test_AT_CellularBase();
Bethory 0:6ad07c9019fd 24
Bethory 0:6ad07c9019fd 25 virtual ~Test_AT_CellularBase();
Bethory 0:6ad07c9019fd 26
Bethory 0:6ad07c9019fd 27 void test_AT_CellularBase_get_at_handler();
Bethory 0:6ad07c9019fd 28
Bethory 0:6ad07c9019fd 29 void test_AT_CellularBase_get_device_error();
Bethory 0:6ad07c9019fd 30 };
Bethory 0:6ad07c9019fd 31
Bethory 0:6ad07c9019fd 32 #endif // TEST_AT_CELLULARBASE_H
Bethory 0:6ad07c9019fd 33