/* * Copyright (c) 2017, 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 CELLULAR_API_CELLULARPOWER_H_ #define CELLULAR_API_CELLULARPOWER_H_ #include "nsapi_types.h" #include "Callback.h" namespace mbed { /** * Class CellularPower * * An interface that provides power handling functions for modem/module. */ class CellularPower { protected: // friend of CellularDevice so that it's the only way to close/delete this class. friend class CellularDevice; /** * virtual Destructor */ virtual ~CellularPower() {} public: /* Access technology used in method opt_receive_period */ enum EDRXAccessTechnology { EDRXGSM_EC_GSM_IoT_mode = 1, EDRXGSM_A_Gb_mode, EDRXUTRAN_Iu_mode, EDRXEUTRAN_WB_S1_mode, EDRXEUTRAN_NB_S1_mode }; /** Set cellular device power on. Default implementation is empty. * Device power on/off is modem/board specific behavior and must be done on inherited class if needed. * Power on is done by toggling power pin/button. * * @remark set_at_mode must be called to initialise modem * * @return zero on success */ virtual nsapi_error_t on() = 0; /** Set cellular device power off. Default implementation is empty. * Device power on/off is modem/board specific behavior and must be done on inherited class if needed. * Power off is done by toggling power pin/button. * * * @return zero on success */ virtual nsapi_error_t off() = 0; /** Set AT command mode. Blocking until success or failure. * * @remark must be called after power on to prepare correct AT mode * * @return zero on success */ virtual nsapi_error_t set_at_mode() = 0; /** Set cellular device power level by enabling/disabling functionality. * * @param func_level: * 0 minimum functionality * 1 full functionality. Enable (turn on) the transmit and receive RF circuits for all supported radio access technologies. * For MTs supporting +CSRA, this equals the RATs indicated by the response of +CSRA=?. Current +CSRA setting is ignored. * It is not required that the MT transmit and receive RF circuits are in a disabled state for this setting to have effect. * 2 disable (turn off) MT transmit RF circuits only * 3 disable (turn off) MT receive RF circuits only * 4 disable (turn off) both MT transmit and receive RF circuits * * @remark See 3GPP TS 27.007 CFUN for more details * * @return zero on success */ virtual nsapi_error_t set_power_level(int func_level) = 0; /** Reset and wake-up cellular device. * * @return zero on success */ virtual nsapi_error_t reset() = 0; /** Opt for power save setting on cellular device. If both parameters are zero then disables PSM. * * @remark See 3GPP TS 27.007 PSM for details * * @param periodic_time Timeout in seconds IoT subsystem is not expecting messaging * @param active_time Timeout in seconds IoT subsystem waits for response * @return zero on success */ virtual nsapi_error_t opt_power_save_mode(int periodic_time, int active_time) = 0; /** Opt for discontinuous reception on cellular device. * * @remark See 3GPP TS 27.007 eDRX for details. * * @param mode disable or enable the use of eDRX * @param act_type type of access technology * @param edrx_value requested edxr value. Extended DRX parameters information element. * * @return zero on success */ virtual nsapi_error_t opt_receive_period(int mode, EDRXAccessTechnology act_type, uint8_t edrx_value) = 0; /** Check whether the device is ready to accept commands. * * @return zero on success */ virtual nsapi_error_t is_device_ready() = 0; /** Set URC callback function for device specific ready urc. URC is defined in device specific * power API. Used in startup sequence to listen when device is ready * for using at commands and possible sim. * * @param callback Callback function called when urc received * @return zero on success */ virtual nsapi_error_t set_device_ready_urc_cb(mbed::Callback callback) = 0; /** Removes the device ready urc from the list of urc's. * * @param callback callback to remove from the list of urc's */ virtual void remove_device_ready_urc_cb(mbed::Callback callback) = 0; }; } // namespace mbed #endif /* CELLULAR_API_CELLULARPOWER_H_ */