Add RSSI member into gsm_ppp_modem_info structure in order to get that information using the gsm_ppp_modem_info function. Signed-off-by: Bartosz Bilas <b.bilas@grinn-global.com>
64 lines
1.8 KiB
C
64 lines
1.8 KiB
C
/*
|
|
* Copyright (c) 2020 Endian Technologies AB
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_INCLUDE_DRIVERS_MODEM_GSM_PPP_H_
|
|
#define ZEPHYR_INCLUDE_DRIVERS_MODEM_GSM_PPP_H_
|
|
|
|
#define GSM_PPP_MDM_MANUFACTURER_LENGTH 10
|
|
#define GSM_PPP_MDM_MODEL_LENGTH 16
|
|
#define GSM_PPP_MDM_REVISION_LENGTH 64
|
|
#define GSM_PPP_MDM_IMEI_LENGTH 16
|
|
#define GSM_PPP_MDM_IMSI_LENGTH 16
|
|
#define GSM_PPP_MDM_ICCID_LENGTH 32
|
|
|
|
struct gsm_ppp_modem_info {
|
|
char mdm_manufacturer[GSM_PPP_MDM_MANUFACTURER_LENGTH];
|
|
char mdm_model[GSM_PPP_MDM_MODEL_LENGTH];
|
|
char mdm_revision[GSM_PPP_MDM_REVISION_LENGTH];
|
|
char mdm_imei[GSM_PPP_MDM_IMEI_LENGTH];
|
|
#if defined(CONFIG_MODEM_SIM_NUMBERS)
|
|
char mdm_imsi[GSM_PPP_MDM_IMSI_LENGTH];
|
|
char mdm_iccid[GSM_PPP_MDM_ICCID_LENGTH];
|
|
#endif
|
|
int mdm_rssi;
|
|
};
|
|
|
|
/** @cond INTERNAL_HIDDEN */
|
|
struct device;
|
|
typedef void (*gsm_modem_power_cb)(const struct device *, void *);
|
|
|
|
void gsm_ppp_start(const struct device *dev);
|
|
void gsm_ppp_stop(const struct device *dev);
|
|
/** @endcond */
|
|
|
|
/**
|
|
* @brief Register functions callbacks for power modem on/off.
|
|
*
|
|
* @param dev: gsm modem device
|
|
* @param modem_on: callback function to
|
|
* execute during gsm ppp configuring.
|
|
* @param modem_off: callback function to
|
|
* execute during gsm ppp stopping.
|
|
* @param user_data: user specified data
|
|
*
|
|
* @retval None.
|
|
*/
|
|
void gsm_ppp_register_modem_power_callback(const struct device *dev,
|
|
gsm_modem_power_cb modem_on,
|
|
gsm_modem_power_cb modem_off,
|
|
void *user_data);
|
|
|
|
/**
|
|
* @brief Get GSM modem information.
|
|
*
|
|
* @param dev: GSM modem device.
|
|
*
|
|
* @retval struct gsm_ppp_modem_info * pointer to modem information structure.
|
|
*/
|
|
const struct gsm_ppp_modem_info *gsm_ppp_modem_info(const struct device *dev);
|
|
|
|
#endif /* ZEPHYR_INCLUDE_DRIVERS_MODEM_GSM_PPP_H_ */
|