Home
last modified time | relevance | path

Searched refs:modem (Results 1 – 25 of 155) sorted by relevance

1234567

/Zephyr-latest/samples/net/cellular_modem/
DREADME.rst1 .. zephyr:code-sample:: cellular-modem
2 :name: Cellular modem
4 Use a cellular modem to communicate with a UDP server.
10 the modem, brings up the net interface, then sends a packet
19 This sample uses the devicetree alias ``modem`` to identify
20 the modem instance to use. The sample also presumes that
21 the modem driver creates the only PPP network interface.
35 modem = &modem;
46 modem: modem {
/Zephyr-latest/samples/net/cellular_modem/boards/
Dnrf9160dk_nrf52840.overlay5 modem = &modem;
13 modem: modem {
Db_u585i_iot02a.overlay3 modem-uart = &usart2;
4 modem = &modem;
33 modem: modem {
Dnrf9160dk_nrf9160_ns.overlay3 modem = &modem;
15 modem: modem {
Dmg100.overlay3 modem-uart = &uart1;
4 modem = &hl7800;
Dpinnacle_100_dvk.overlay3 modem-uart = &uart1;
4 modem = &hl7800;
/Zephyr-latest/doc/services/modem/
Dindex.rst12 The modem modules are inter-connected dynamically using
23 A modem backend will internally contain an instance of a modem_pipe
27 The modem backend will return a pointer to its internal modem_pipe
29 backend through the modem pipe API.
37 :ref:`net_l2_interface`, to a modem backend. The L2 PPP interface sends
39 in PPP frames before being transported via a modem backend. This module
50 attaches to a single modem backend, exposing multiple modem backends,
58 This module is used to share modem pipes globally. This module aims to
59 decouple the creation and setup of modem pipes in device drivers from
61 :zephyr_file:`drivers/modem/modem_at_shell.c` and
[all …]
/Zephyr-latest/drivers/modem/
DKconfig9 Enable config options for modem drivers.
14 module-str = modem
23 This driver allows modem drivers to communicate over UART with custom
31 int "Maximum number of modem receiver contexts"
36 Maximum number of modem receiver contexts to handle. For most
43 This driver allows modem drivers to communicate with an interface
47 modem interface, command handler, pin config and socket handling each
53 int "Maximum number of modem contexts"
56 Maximum number of modem contexts to handle. For most
60 bool "Verbose debug output in the modem context"
[all …]
DKconfig.quectel-bg9x7 bool "Quectel modem driver"
14 Choose this setting to enable quectel BG9x LTE-CatM1/NB-IoT modem
20 int "Stack size for the quectel BG9X modem driver RX thread"
26 int "Stack size for the quectel BG9X modem driver work queue"
58 string "Unsolicited response string expected from the modem"
61 This string is used to determine when modem powered and ready
62 to accept AT commands. If this value is not matching the modem
DKconfig.at_shell5 bool "AT command shell based on modem modules"
12 depends on $(dt_alias_enabled,modem)
33 int "Size of modem chat receive buffer in bytes"
DKconfig.ublox-sara-r47 bool "U-blox SARA modem driver"
15 Choose this setting to enable u-blox SARA-R4 LTE-CatM1/NB-IoT modem
27 Enable support for SARA-R4 modem
32 Enable support for SARA-U2 modem
37 Enable automatic detection of modem variant (SARA-R4 or SARA-U2)
42 int "Stack size for the u-blox SARA-R4 modem driver RX thread"
48 int "Stack size for the u-blox SARA-R4 modem driver work queue"
96 Choose this setting to use a modem GPIO pin as network indication.
104 This setting is used to configure one of the modem's GPIO pins
DKconfig.hl78001 # Sierra Wireless HL7800 modem driver options
7 bool "Sierra Wireless HL7800 modem driver"
13 Sierra Wireless HL7800 LTE-M/NB-IoT modem driver.
55 Leave the HL7800 RAT unchanged during modem init.
60 Enable LTE Cat-M1 mode during modem init.
65 Enable LTE Cat-NB1 mode during modem init.
70 bool "Configure modem bands"
74 HL7800 modem should use at boot time.
193 Choose this setting to enable a low power mode for the HL7800 modem
265 Highest power consumption of modem sleep states
[all …]
DKconfig.wncm14a2a7 bool "Wistron LTE-M modem driver"
12 Choose this setting to enable Wistron WNC-M14A2A LTE-M modem driver.
18 int "Size of the stack for the WNC-M14A2A modem driver RX thread"
24 int "Size of the stack for the WNC-M14A2A modem driver work queue"
DKconfig.simcom-sim708016 Enables the driver for the Sim7080 modem.
21 int "Stack size for the simcom sim7080 modem driver rx thread"
27 int "Stack size for the simcom sim7080 modem driver work queue"
DKconfig.cellular5 bool "Generic cellular modem support"
61 int "New baudrate to configure modem to, if supported"
67 int "Time modem takes to change baudrate, in milliseconds"
/Zephyr-latest/samples/net/cellular_modem/src/
Dmain.c25 const struct device *modem = DEVICE_DT_GET(DT_ALIAS(modem)); variable
55 rc = cellular_get_signal(modem, CELLULAR_SIGNAL_RSSI, &rssi); in print_cellular_info()
60 rc = cellular_get_modem_info(modem, CELLULAR_MODEM_INFO_IMEI, &buffer[0], sizeof(buffer)); in print_cellular_info()
64 rc = cellular_get_modem_info(modem, CELLULAR_MODEM_INFO_MODEL_ID, &buffer[0], in print_cellular_info()
69 rc = cellular_get_modem_info(modem, CELLULAR_MODEM_INFO_MANUFACTURER, &buffer[0], in print_cellular_info()
74 rc = cellular_get_modem_info(modem, CELLULAR_MODEM_INFO_SIM_IMSI, &buffer[0], in print_cellular_info()
79 rc = cellular_get_modem_info(modem, CELLULAR_MODEM_INFO_SIM_ICCID, &buffer[0], in print_cellular_info()
84 rc = cellular_get_modem_info(modem, CELLULAR_MODEM_INFO_FW_VERSION, &buffer[0], in print_cellular_info()
289 pm_device_action_run(modem, PM_DEVICE_ACTION_RESUME); in main()
363 ret = pm_device_action_run(modem, PM_DEVICE_ACTION_SUSPEND); in main()
[all …]
/Zephyr-latest/boards/shields/sparkfun_carrier_asset_tracker/
Dsparkfun_carrier_asset_tracker.overlay9 modem-uart = &micromod_1_uart;
10 modem = &modem;
19 modem: sara_r5 {
/Zephyr-latest/boards/dptechnics/walter/
Dwalter_esp32s3_procpu.dts17 modem = &modem;
18 modem-uart = &uart1;
48 modem: modem { label
/Zephyr-latest/boards/rakwireless/rak5010/
Drak5010_nrf52840.dts37 modem-uart = &uart0;
38 modem = &modem;
65 modem: modem { label
/Zephyr-latest/boards/particle/boron/
Dparticle_boron_defconfig19 # Fix the priority to enable the modem line's serial buffer
20 # before the modem driver starts (gsm_ppp or ublox-sara-r4).
/Zephyr-latest/doc/hardware/peripherals/
Dgnss.rst20 The GNSS subsystem is based on the :ref:`modem`. The GNSS
22 to and from the modem, to parsing, creating and processing
27 and configuration for the specific GNSS modem.
/Zephyr-latest/drivers/gnss/
DKconfig.quectel_lcx6g6 bool "Quectel LCX6G GNSS modem driver"
18 Enable quectel LCX6G series GNSS modem driver.
/Zephyr-latest/subsys/modem/
DKconfig71 Enables modem statistics shell commands which track the usage of
72 buffers across the modem modules. The statistics are useful for
76 int "Maximum string size of modem stats buffer name"
/Zephyr-latest/doc/connectivity/networking/api/
Dppp.rst17 cannot be transmitted over a modem line on their own, without some data link
36 For using PPP with a cellular modem, see :zephyr:code-sample:`cellular-modem` sample
/Zephyr-latest/drivers/lora/
DKconfig.rylrxxx40 int "size of buffers for modem library"
43 Configure the size of buffers for modem library

1234567