Mistake on this page?
Report an issue in GitHub or email us
Public Member Functions | Static Public Member Functions | Protected Member Functions
AT_CellularDevice Class Reference

Class AT_CellularDevice. More...

#include <AT_CellularDevice.h>

Inheritance diagram for AT_CellularDevice:
CellularDevice

Public Member Functions

virtual nsapi_error_t hard_power_on ()
 Sets the modem up for powering on This is equivalent to plugging in the device, i.e., attaching power and serial port. More...
 
virtual nsapi_error_t hard_power_off ()
 Sets the modem in unplugged state. More...
 
virtual nsapi_error_t soft_power_on ()
 Powers up the modem. More...
 
virtual nsapi_error_t soft_power_off ()
 Powers down the modem. More...
 
virtual nsapi_error_t set_pin (const char *sim_pin)
 Open the SIM card by setting the pin code for SIM. More...
 
virtual nsapi_error_t get_sim_state (SimState &state)
 Get SIM card's state. More...
 
virtual CellularContextcreate_context (FileHandle *fh=NULL, const char *apn=NULL, bool cp_req=false, bool nonip_req=false)
 Creates a new CellularContext interface. More...
 
virtual CellularContextcreate_context (UARTSerial *serial, const char *const apn, PinName dcd_pin=NC, bool active_high=false, bool cp_req=false, bool nonip_req=false)
 Creates a new CellularContext interface. More...
 
virtual void delete_context (CellularContext *context)
 Deletes the given CellularContext instance. More...
 
virtual CellularNetworkopen_network (FileHandle *fh=NULL)
 Create new CellularNetwork interface. More...
 
virtual CellularSMSopen_sms (FileHandle *fh=NULL)
 Create new CellularSMS interface. More...
 
virtual CellularInformationopen_information (FileHandle *fh=NULL)
 Create new CellularInformation interface. More...
 
virtual void close_network ()
 Closes the opened CellularNetwork by deleting the CellularNetwork instance. More...
 
virtual void close_sms ()
 Closes the opened CellularSMS by deleting the CellularSMS instance. More...
 
virtual void close_information ()
 Closes the opened CellularInformation by deleting the CellularInformation instance. More...
 
virtual void set_timeout (int timeout)
 Set the default response timeout. More...
 
virtual void modem_debug_on (bool on)
 Turn modem debug traces on. More...
 
virtual nsapi_error_t init ()
 Initialize cellular device must be called right after the module is ready. More...
 
virtual nsapi_error_t shutdown ()
 Shutdown cellular device to minimum functionality. More...
 
virtual nsapi_error_t is_ready ()
 Check whether the device is ready to accept commands. More...
 
virtual void set_ready_cb (Callback< void()> callback)
 Set callback function to listen when device is ready. More...
 
virtual nsapi_error_t set_power_save_mode (int periodic_time, int active_time=0)
 Set power save mode. More...
 
virtual ATHandlerget_at_handler ()
 Get the current ATHandler instance in use for debug purposes etc. More...
 
virtual nsapi_error_t release_at_handler (ATHandler *at_handler)
 Releases the given at_handler. More...
 
virtual AT_CellularContextcreate_context_impl (ATHandler &at, const char *apn, bool cp_req=false, bool nonip_req=false)
 Creates new instance of AT_CellularContext or if overridden, modem specific implementation. More...
 
virtual AT_CellularNetworkopen_network_impl (ATHandler &at)
 Create new instance of AT_CellularNetwork or if overridden, modem specific implementation. More...
 
virtual AT_CellularSMSopen_sms_impl (ATHandler &at)
 Create new instance of AT_CellularSMS or if overridden, modem specific implementation. More...
 
virtual AT_CellularInformationopen_information_impl (ATHandler &at)
 Create new instance of AT_CellularInformation or if overridden, modem specific implementation. More...
 
virtual CellularContextget_context_list () const
 Get the linked list of CellularContext instances. More...
 
void stop ()
 Stop the current operation. More...
 
FileHandleget_file_handle () const
 Get the current FileHandle item used when communicating with the modem. More...
 
virtual events::EventQueueget_queue ()
 Get event queue that can be chained to main event queue. More...
 
void set_sim_pin (const char *sim_pin)
 Set the pin code for SIM card. More...
 
void set_plmn (const char *plmn)
 Plmn to use when registering to cellular network. More...
 
nsapi_error_t set_device_ready ()
 Start the interface. More...
 
nsapi_error_t set_sim_ready ()
 Start the interface. More...
 
nsapi_error_t register_to_network ()
 Start the interface. More...
 
nsapi_error_t attach_to_network ()
 Start the interface. More...
 
void attach (Callback< void(nsapi_event_t, intptr_t)> status_cb)
 Register callback for status reporting. More...
 
void set_retry_timeout_array (const uint16_t timeout[], int array_len)
 Set an array of timeouts to wait before CellularStateMachine retries after failure. More...
 

Static Public Member Functions

static CellularDeviceget_default_instance ()
 Returns singleton instance of CellularDevice, if Mbed target board has a supported onboard modem, or provide-default is defined for a cellular driver in JSON configuration files. More...
 
static CellularDeviceget_target_default_instance ()
 Return target onboard instance of CellularDevice. More...
 

Protected Member Functions

virtual void cellular_callback (nsapi_event_t ev, intptr_t ptr, CellularContext *ctx=NULL)
 Cellular callback to be attached to Network and CellularStateMachine classes. More...
 
void get_retry_timeout_array (uint16_t *timeout, int &array_len) const
 Get the retry array from the CellularStateMachine. More...
 

Detailed Description

Class AT_CellularDevice.

A class defines opening and closing of cellular interfaces. Deleting/Closing of opened interfaces can be done only through this class.

Definition at line 37 of file AT_CellularDevice.h.

Member Function Documentation

void attach ( Callback< void(nsapi_event_t, intptr_t)>  status_cb)
inherited

Register callback for status reporting.

The specified status callback function will be called on the network and cellular device status changes. The parameters on the callback are the event type and event-type dependent reason parameter.

Remarks
deleting CellularDevice/CellularContext in callback not allowed.
Allocating/adding lots of traces not recommended as callback is called mostly from State machines thread which is now 2048. You can change to main thread for example via EventQueue.
Parameters
status_cbThe callback for status changes.
nsapi_error_t attach_to_network ( )
inherited

Start the interface.

Attempts to attach the device to cellular network. API is asynchronous. Application can get results from CellularContext callback, which is set with attach(...), or callback, which is set by attach(...), in this class.

Returns
NSAPI_ERROR_OK on success NSAPI_ERROR_NO_MEMORY on case of memory failure
virtual void cellular_callback ( nsapi_event_t  ev,
intptr_t  ptr,
CellularContext ctx = NULL 
)
protectedvirtual

Cellular callback to be attached to Network and CellularStateMachine classes.

CellularContext calls this when in PPP mode to provide network changes. This method will broadcast to every interested classes: CellularContext (might be many) and CellularStateMachine if available.

Reimplemented from CellularDevice.

virtual void close_information ( )
virtual

Closes the opened CellularInformation by deleting the CellularInformation instance.

Implements CellularDevice.

virtual void close_network ( )
virtual

Closes the opened CellularNetwork by deleting the CellularNetwork instance.

Implements CellularDevice.

virtual void close_sms ( )
virtual

Closes the opened CellularSMS by deleting the CellularSMS instance.

Implements CellularDevice.

virtual CellularContext* create_context ( FileHandle fh = NULL,
const char *  apn = NULL,
bool  cp_req = false,
bool  nonip_req = false 
)
virtual

Creates a new CellularContext interface.

Parameters
fhfile handle used in communication to modem. This can be, for example, UART handle. If null, then the default file handle is used.
apnaccess point to use with context, can be null.
cp_reqflag indicating if EPS control plane optimization is required
nonip_reqflag indicating if this context is required to be Non-IP
Returns
new instance of class CellularContext or NULL in case of failure

Implements CellularDevice.

virtual CellularContext* create_context ( UARTSerial serial,
const char *const  apn,
PinName  dcd_pin = NC,
bool  active_high = false,
bool  cp_req = false,
bool  nonip_req = false 
)
virtual

Creates a new CellularContext interface.

This API should be used if serial is UART and PPP mode used. CellularContext created will use data carrier detect to be able to detect disconnection much faster in PPP mode. UARTSerial usually is the same which was given for the CellularDevice.

Parameters
serialUARTSerial used in communication to modem. If null then the default file handle is used.
apnaccess point to use with context, can be null.
dcd_pinPin used to set data carrier detect on/off for the given UART
active_higha boolean set to true if DCD polarity is active low
cp_reqFlag indicating if EPS control plane optimization is required
nonip_reqFlag indicating if this context is required to be Non-IP
Returns
new instance of class CellularContext or NULL in case of failure

Implements CellularDevice.

virtual AT_CellularContext* create_context_impl ( ATHandler at,
const char *  apn,
bool  cp_req = false,
bool  nonip_req = false 
)
virtual

Creates new instance of AT_CellularContext or if overridden, modem specific implementation.

Parameters
atATHandler reference for communication with the modem.
apnaccess point to use with context
cp_reqflag indicating if control plane EPS optimization needs to be setup
nonip_reqflag indicating if PDP context needs to be Non-IP
Returns
new instance of class AT_CellularContext
virtual void delete_context ( CellularContext context)
virtual

Deletes the given CellularContext instance.

Parameters
contextCellularContext to delete

Implements CellularDevice.

virtual ATHandler* get_at_handler ( )
virtual

Get the current ATHandler instance in use for debug purposes etc.

Once use has been finished call to release_at_handler() has to be made

Returns
Pointer to the ATHandler in use

Implements CellularDevice.

virtual CellularContext* get_context_list ( ) const
virtual

Get the linked list of CellularContext instances.

Returns
Pointer to first item in linked list

Reimplemented from CellularDevice.

static CellularDevice* get_default_instance ( )
staticinherited

Returns singleton instance of CellularDevice, if Mbed target board has a supported onboard modem, or provide-default is defined for a cellular driver in JSON configuration files.

Otherwise returns NULL. See NetworkInterface::get_default_instance for details.

Remarks
Application may override this (non-weak) default implementation.
Returns
default CellularDevice, NULL if not defined
FileHandle& get_file_handle ( ) const
inherited

Get the current FileHandle item used when communicating with the modem.

Returns
reference to FileHandle
virtual events::EventQueue* get_queue ( )
virtualinherited

Get event queue that can be chained to main event queue.

Returns
event queue
void get_retry_timeout_array ( uint16_t *  timeout,
int &  array_len 
) const
protectedinherited

Get the retry array from the CellularStateMachine.

Array is used in retry logic. Array contains seconds and retry logic uses those second to wait before trying again.

Parameters
timeouttimeout array containing seconds for retry logic. Must have space for CELLULAR_RETRY_ARRAY_SIZE (defined in CellularCommon.h)
array_lenlength of the timeout array on return
virtual nsapi_error_t get_sim_state ( SimState &  state)
virtual

Get SIM card's state.

Parameters
statecurrent state of SIM
Returns
NSAPI_ERROR_OK on success NSAPI_ERROR_DEVICE_ERROR on failure

Implements CellularDevice.

static CellularDevice* get_target_default_instance ( )
staticinherited

Return target onboard instance of CellularDevice.

Remarks
Mbed OS target shall override (non-weak) this function for an onboard modem.
Returns
CellularDevice* instance, NULL if not defined
virtual nsapi_error_t hard_power_off ( )
virtual

Sets the modem in unplugged state.

This is equivalent to pulling the plug off of the device, i.e., detaching power and serial port.

This puts the modem in the lowest power state.

Remarks
CellularStateMachine disconnect or destruct does not shutdown or power off the modem, but you need to do that yourself.
Precondition
You must call soft_power_off to power off the modem before calling hard_power_off.
Returns
NSAPI_ERROR_OK on success

Implements CellularDevice.

virtual nsapi_error_t hard_power_on ( )
virtual

Sets the modem up for powering on This is equivalent to plugging in the device, i.e., attaching power and serial port.

In general, hard_power_on and soft_power_on provides a simple hardware abstraction layer on top of the modem drivers written for Mbed OS; they can be overridden in a derived class to perform custom power controls in a particular board configuration. In many boards this will be a no-op if there is no separate power supply control circuitry.

Remarks
CellularStateMachine calls hard_power_on at first until successful, then soft_power_on and init until the modem responds. If you are not using CellularStateMachine then you need to call these functions yourself.
Postcondition
You must call soft_power_on to power on the modem after calling hard_power_on.
Returns
NSAPI_ERROR_OK on success

Implements CellularDevice.

virtual nsapi_error_t init ( )
virtual

Initialize cellular device must be called right after the module is ready.

For example, when multiple cellular modules are supported in a single driver this function detects and adapts to an actual module at runtime.

Remarks
CellularStateMachine calls soft_power_on and init repeatedly when starting to connect until the modem responds.
Returns
NSAPI_ERROR_OK on success NSAPI_ERROR_NO_MEMORY on case of memory failure NSAPI_ERROR_UNSUPPORTED if current cellular module type is not detected NSAPI_ERROR_DEVICE_ERROR if model information could not be read

Implements CellularDevice.

virtual nsapi_error_t is_ready ( )
virtual

Check whether the device is ready to accept commands.

Returns
NSAPI_ERROR_OK on success NSAPI_ERROR_DEVICE_ERROR on failure

Implements CellularDevice.

virtual void modem_debug_on ( bool  on)
virtual

Turn modem debug traces on.

Parameters
onset true to enable debug traces

Implements CellularDevice.

virtual CellularInformation* open_information ( FileHandle fh = NULL)
virtual

Create new CellularInformation interface.

Parameters
fhfile handle used in communication to modem. This can be, for example, UART handle. If null, then the default file handle is used.
Returns
New instance of interface CellularInformation.

Implements CellularDevice.

virtual AT_CellularInformation* open_information_impl ( ATHandler at)
virtual

Create new instance of AT_CellularInformation or if overridden, modem specific implementation.

Parameters
atATHandler reference for communication with the modem.
Returns
new instance of class AT_CellularInformation
virtual CellularNetwork* open_network ( FileHandle fh = NULL)
virtual

Create new CellularNetwork interface.

Parameters
fhfile handle used in communication to modem. This can be, for example, UART handle. If null, then the default file handle is used.
Returns
New instance of interface CellularNetwork.

Implements CellularDevice.

virtual AT_CellularNetwork* open_network_impl ( ATHandler at)
virtual

Create new instance of AT_CellularNetwork or if overridden, modem specific implementation.

Parameters
atATHandler reference for communication with the modem.
Returns
new instance of class AT_CellularNetwork
virtual CellularSMS* open_sms ( FileHandle fh = NULL)
virtual

Create new CellularSMS interface.

Parameters
fhfile handle used in communication to modem. This can be, for example, UART handle. If null, then the default file handle is used.
Returns
New instance of interface CellularSMS.

Implements CellularDevice.

virtual AT_CellularSMS* open_sms_impl ( ATHandler at)
virtual

Create new instance of AT_CellularSMS or if overridden, modem specific implementation.

Parameters
atATHandler reference for communication with the modem.
Returns
new instance of class AT_CellularSMS
nsapi_error_t register_to_network ( )
inherited

Start the interface.

Attempts to register the device to cellular network. API is asynchronous. Application can get results from CellularContext callback, which is set with attach(...), or callback, which is set by attach(...), in this class.

Returns
NSAPI_ERROR_OK on success NSAPI_ERROR_NO_MEMORY on case of memory failure
virtual nsapi_error_t release_at_handler ( ATHandler at_handler)
virtual

Releases the given at_handler.

If last reference to at_hander then it's deleted.

Parameters
at_handler
Returns
NSAPI_ERROR_OK on success, NSAPI_ERROR_PARAMETER on failure

Implements CellularDevice.

nsapi_error_t set_device_ready ( )
inherited

Start the interface.

Initializes the modem for communication. API is asynchronous. Application can get results from CellularContext callback, which is set with attach(...), or callback, which is set by attach(...), in this class.

Returns
NSAPI_ERROR_OK on success NSAPI_ERROR_NO_MEMORY on case of memory failure
virtual nsapi_error_t set_pin ( const char *  sim_pin)
virtual

Open the SIM card by setting the pin code for SIM.

Parameters
sim_pinPIN for the SIM card
Returns
NSAPI_ERROR_OK on success NSAPI_ERROR_PARAMETER if sim_pin is null and sim is not ready NSAPI_ERROR_DEVICE_ERROR on failure

Implements CellularDevice.

void set_plmn ( const char *  plmn)
inherited

Plmn to use when registering to cellular network.

If plmn is set, then registering is forced to this plmn. If plmn is not set, then automatic registering is used when registering to a cellular network. It doesn't start any operations.

Parameters
plmnplmn used when registering to cellular network
virtual nsapi_error_t set_power_save_mode ( int  periodic_time,
int  active_time = 0 
)
virtual

Set power save mode.

Remarks
See 3GPP TS 27.007 PSM for details
Parameters
periodic_timein seconds to enable power save, or zero to disable
active_timein seconds to wait before entering power save mode
Returns
NSAPI_ERROR_OK on success NSAPI_ERROR_DEVICE_ERROR on failure

Implements CellularDevice.

virtual void set_ready_cb ( Callback< void()>  callback)
virtual

Set callback function to listen when device is ready.

Parameters
callbackfunction to call on device ready, or NULL to remove callback.

Implements CellularDevice.

void set_retry_timeout_array ( const uint16_t  timeout[],
int  array_len 
)
inherited

Set an array of timeouts to wait before CellularStateMachine retries after failure.

To disable retry behavior completely use set_retry_timeout_array(NULL, 0). CellularContext callback event cell_callback_data_t.final_try indicates true when all retries have failed.

Remarks
Use set_retry_timeout_array for CellularStateMachine to wait before it retries again after failure, this is useful to send repetitive requests when don't know exactly when modem is ready to accept requests. Use set_timeout for timeout how long to wait for a response from modem for each request, this is useful if modem can accept requests but processing takes long time before sending response.
Parameters
timeouttimeout array using seconds
array_lenlength of the array
void set_sim_pin ( const char *  sim_pin)
inherited

Set the pin code for SIM card.

Parameters
sim_pinPIN for the SIM card
nsapi_error_t set_sim_ready ( )
inherited

Start the interface.

Attempts to open the sim. API is asynchronous. Application can get results from CellularContext callback, which is set with attach(...), or callback, which is set by attach(...), in this class.

Returns
NSAPI_ERROR_OK on success NSAPI_ERROR_NO_MEMORY on case of memory failure
virtual void set_timeout ( int  timeout)
virtual

Set the default response timeout.

Remarks
CellularStateMachine timeouts for all states are also changed to timeout.
Parameters
timeoutmilliseconds to wait response from modem

Implements CellularDevice.

virtual nsapi_error_t shutdown ( )
virtual

Shutdown cellular device to minimum functionality.

Actual functionality is modem specific, for example UART may is not be responsive without explicit wakeup signal (such as RTS) after shutdown.

Remarks
You must call shutdown before power off to prepare the modem and to quit cellular network.
Returns
NSAPI_ERROR_OK on success NSAPI_ERROR_DEVICE_ERROR on failure

Reimplemented from CellularDevice.

virtual nsapi_error_t soft_power_off ( )
virtual

Powers down the modem.

This is equivalent to turning off the modem by button press.

Remarks
CellularStateMachine disconnect or destruct does not shutdown or power off the modem, but you need to do that yourself.
Precondition
You must call shutdown to prepare the modem for power off.
Returns
NSAPI_ERROR_OK on success

Implements CellularDevice.

virtual nsapi_error_t soft_power_on ( )
virtual

Powers up the modem.

This is equivalent to pressing the "power button" to activate or reset the modem and usually implemented as a short pulse on a dedicated GPIO signal. It is expected to be present to make it possible to reset the modem. The driver may repeat this if the modem is not responsive to AT commands.

Remarks
CellularStateMachine calls this when requested to connect. If you are not using CellularStateMachine then you need to call this function yourself.
Postcondition
You must call init to setup the modem.
Returns
NSAPI_ERROR_OK on success

Implements CellularDevice.

void stop ( )
inherited

Stop the current operation.

Operations: set_device_ready, set_sim_ready, register_to_network, attach_to_network

Important Information for this Arm website

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies. If you are not happy with the use of these cookies, please review our Cookie Policy to learn how they can be disabled. By disabling cookies, some features of the site will not work.