mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-08 04:35:21 +00:00
Application might need to know the GSM modem device name so provide it in the header file. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
19 lines
359 B
C
19 lines
359 B
C
/*
|
|
* Copyright (c) 2020 Endian Technologies AB
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef GSM_PPP_H_
|
|
#define GSM_PPP_H_
|
|
|
|
#define GSM_MODEM_DEVICE_NAME "modem_gsm"
|
|
|
|
/** @cond INTERNAL_HIDDEN */
|
|
struct device;
|
|
void gsm_ppp_start(const struct device *device);
|
|
void gsm_ppp_stop(const struct device *device);
|
|
/** @endcond */
|
|
|
|
#endif /* GSM_PPP_H_ */
|