mirror of https://github.com/ARMmbed/mbed-os.git
103 lines
3.1 KiB
C++
103 lines
3.1 KiB
C++
/*
|
|
* Copyright (c) 2018, Arm Limited and affiliates.
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
#ifndef UBLOX_AT_CELLULARCONTEXT_H_
|
|
#define UBLOX_AT_CELLULARCONTEXT_H_
|
|
|
|
#include "AT_CellularContext.h"
|
|
#include "UBLOX_AT_CellularNetwork.h"
|
|
|
|
namespace mbed {
|
|
|
|
class UBLOX_AT_CellularContext: public AT_CellularContext {
|
|
public:
|
|
UBLOX_AT_CellularContext(ATHandler &at, CellularDevice *device, const char *apn, bool cp_req = false, bool nonip_req = false);
|
|
virtual ~UBLOX_AT_CellularContext();
|
|
|
|
virtual void do_connect();
|
|
#ifndef UBX_MDM_SARA_R41XM
|
|
virtual void do_disconnect();
|
|
#endif
|
|
virtual nsapi_error_t get_gateway(SocketAddress *addr);
|
|
|
|
const char *get_apn(void);
|
|
const char *get_uname(void);
|
|
const char *get_pwd(void);
|
|
CellularContext::AuthenticationType get_auth(void);
|
|
|
|
/** Convert nsapi_security_t to the modem security numbers.
|
|
*
|
|
* @param nsapi_security Security protocol.
|
|
* @return Modem security numbers.
|
|
*/
|
|
int nsapi_security_to_modem_security(AuthenticationType nsapi_security);
|
|
|
|
/** Get the next set of credentials from the database.
|
|
*/
|
|
void get_next_credentials(char **config);
|
|
#ifdef UBX_MDM_SARA_R412M
|
|
CellularNetwork::RadioAccessTechnology read_radio_technology(void);
|
|
#endif
|
|
protected:
|
|
virtual NetworkStack *get_stack();
|
|
|
|
/** Connect the on board IP stack of the modem.
|
|
*
|
|
* @return True if successful, otherwise false.
|
|
*/
|
|
#ifndef UBX_MDM_SARA_R41XM
|
|
nsapi_error_t define_context();
|
|
#endif
|
|
|
|
private:
|
|
|
|
/** Length of IMSI buffer.
|
|
*/
|
|
static const int MAX_IMSI_LENGTH = 15;
|
|
|
|
/** The type of authentication to use.
|
|
*/
|
|
AuthenticationType _auth;
|
|
|
|
/** Activate one of the on-board modem's connection profiles.
|
|
*
|
|
* @param apn The APN to use.
|
|
* @param username The user name to use.
|
|
* @param password The password to use.
|
|
* @param auth The authentication method to use
|
|
* (NOAUTH, PAP,
|
|
* CHAP or AUTOMATIC).
|
|
* @return True if successful, otherwise false.
|
|
*/
|
|
#ifndef UBX_MDM_SARA_R41XM
|
|
bool activate_profile(const char *apn, const char *username, const char *password, AuthenticationType auth);
|
|
#endif
|
|
|
|
/** Disconnect the on board IP stack of the modem.
|
|
*
|
|
* @return True if successful, otherwise false.
|
|
*/
|
|
bool disconnect_modem_stack();
|
|
|
|
/** Read IMSI of modem.
|
|
*/
|
|
nsapi_error_t get_imsi(char *imsi);
|
|
};
|
|
|
|
} /* namespace mbed */
|
|
|
|
#endif // UBLOX_AT_CELLULARCONTEXT_H_
|