mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-05 10:15:21 +00:00
These changes enable applications to restart the networking stack which was previously not possible without rebooting the device. This was a major show-stopper because it made power management impossible, and furthermore made it impossible to recover from a bad modem state without rebooting. This has been verified to work on a SIMCOM7600E modem, both with and without CONFIG_GSM_MUX enabled. Signed-off-by: Benjamin Lindqvist <benjamin.lindqvist@endian.se>
18 lines
317 B
C
18 lines
317 B
C
/*
|
|
* Copyright (c) 2020 Endian Technologies AB
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef GSM_PPP_H_
|
|
#define GSM_PPP_H_
|
|
|
|
|
|
/** @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_ */
|