Gleb Klochkov / Mbed OS Climatcontroll_Main

Dependencies:   esp8266-driver

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ATHandler_stub.h Source File

ATHandler_stub.h

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 "stdint.h"
00019 #include "stdbool.h"
00020 #include <cstddef>
00021 #include "nsapi_types.h"
00022 #include "ATHandler.h"
00023 #include "FileHandle_stub.h"
00024 #include "Callback.h"
00025 
00026 
00027 namespace ATHandler_stub {
00028     extern nsapi_error_t nsapi_error_value;
00029     extern uint8_t nsapi_error_ok_counter;
00030     extern int int_value;
00031     extern ssize_t ssize_value;
00032     extern char* read_string_value;
00033     extern size_t size_value;
00034     extern size_t return_given_size;
00035     extern bool bool_value;
00036     extern uint8_t resp_info_true_counter;
00037     extern uint8_t uint8_value;
00038     extern mbed::FileHandle_stub *fh_value;
00039     extern mbed::device_err_t device_err_value;
00040     extern mbed::Callback<void()> callback;
00041 }