Mbed OS Reference
Loading...
Searching...
No Matches
AT_CellularInformation.h
1/*
2 * Copyright (c) 2018, Arm Limited and affiliates.
3 * SPDX-License-Identifier: Apache-2.0
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef AT_CELLULAR_INFORMATION_H_
19#define AT_CELLULAR_INFORMATION_H_
20
21#include "CellularInformation.h"
22#include "ATHandler.h"
23#include "AT_CellularDevice.h"
24
25
26namespace mbed {
27
28/**
29 * @addtogroup at-hayes AT/Hayes Command Set
30 * @ingroup Cellular
31 * @{
32 */
33
34/**
35 * Class AT_CellularInformation
36 *
37 * Class that provides information about cellular device.
38 */
40public:
42
44
45public:
46 virtual nsapi_error_t get_manufacturer(char *buf, size_t buf_size);
47
48 virtual nsapi_error_t get_model(char *buf, size_t buf_size);
49
50 virtual nsapi_error_t get_revision(char *buf, size_t buf_size);
51
52 virtual nsapi_error_t get_serial_number(char *buf, size_t buf_size, SerialNumberType type);
53
54 virtual nsapi_error_t get_imsi(char *imsi, size_t buf_size);
55
56 virtual nsapi_error_t get_iccid(char *buf, size_t buf_size);
57
58protected:
59 /** Request information text from cellular device
60 *
61 * @param cmd 3gpp command string
62 * @param buf buffer for response
63 * @param buf_size buffer size
64 * @return on success read character count, on failure negative error code
65 */
66 nsapi_error_t get_info(const char *cmd, char *buf, size_t buf_size);
67
68protected:
69 ATHandler &_at;
70 AT_CellularDevice &_device;
71};
72
73/**
74 * @}
75 */
76
77} // namespace mbed
78
79#endif // AT_CELLULAR_INFORMATION_H_
Class AT_CellularDevice.
Class AT_CellularInformation.
virtual nsapi_error_t get_revision(char *buf, size_t buf_size)
Request revision identification of cellular device.
virtual nsapi_error_t get_imsi(char *imsi, size_t buf_size)
Get IMSI from the sim card.
virtual nsapi_error_t get_manufacturer(char *buf, size_t buf_size)
Request manufacturer identification of cellular device.
virtual nsapi_error_t get_model(char *buf, size_t buf_size)
Request model identification of cellular device.
virtual nsapi_error_t get_serial_number(char *buf, size_t buf_size, SerialNumberType type)
Request serial number identification of cellular device.
nsapi_error_t get_info(const char *cmd, char *buf, size_t buf_size)
Request information text from cellular device.
virtual nsapi_error_t get_iccid(char *buf, size_t buf_size)
Get serial number from the SIM card.
Class for sending AT commands and parsing AT responses.
Definition: ATHandler.h:68
Class CellularInformation.
signed int nsapi_error_t
Type used to represent error codes.
Definition: nsapi_types.h:142