zephyr/include/drivers/gsm_ppp.h
Jukka Rissanen cc230815cb drivers: gsm: Add GSM modem device name
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>
2020-10-19 18:29:02 +02:00

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_ */