33 lines
742 B
Plaintext
33 lines
742 B
Plaintext
|
# Copyright (c) 2020 Intel Corporation
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
config MODEM_GSM_PPP
|
||
|
bool "Support GSM modems"
|
||
|
select MODEM_CONTEXT
|
||
|
select MODEM_CMD_HANDLER
|
||
|
select MODEM_IFACE_UART
|
||
|
help
|
||
|
Enable GSM modems that support standard AT commands and PPP.
|
||
|
|
||
|
if MODEM_GSM_PPP
|
||
|
|
||
|
config MODEM_GSM_UART_NAME
|
||
|
string "UART device name the modem is connected to"
|
||
|
|
||
|
config MODEM_GSM_INIT_PRIORITY
|
||
|
int "Init priority for the GSM modem driver"
|
||
|
default 42
|
||
|
range 0 99
|
||
|
help
|
||
|
The GSM modem is initialized in POST_KERNEL using priority in
|
||
|
the range 0-99.
|
||
|
|
||
|
config MODEM_GSM_APN
|
||
|
string "Access Point Name"
|
||
|
default "internet"
|
||
|
help
|
||
|
Specify Access Point Name, i.e. the name to identify Internet IP
|
||
|
GPRS cellular data context.
|
||
|
|
||
|
endif
|