/Zephyr-Core-3.5.0/samples/net/cellular_modem/ |
D | README.rst | 1 .. 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 network interface. 35 modem = &modem; 46 modem: modem {
|
/Zephyr-Core-3.5.0/samples/net/gsm_modem/boards/ |
D | b_u585i_iot02a.overlay | 3 modem-uart = &usart2; 4 modem = &modem; 33 modem: modem {
|
D | frdm_uart2_dts.overlay | 9 gsm: gsm-modem {
|
/Zephyr-Core-3.5.0/drivers/modem/ |
D | Kconfig | 9 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 …]
|
D | Kconfig.gsm | 21 Type/manufacturer of the GSM modem 24 bool "Generic GSM modem" 26 The modem does not need any special handling etc. 29 bool "SIMCOM modem" 31 Use this if you have SIMCOM based modem like SIM800 etc. 34 bool "Quectel modem" 36 Use this if you have Quectel based modem like EC2X etc. 41 int "Size of the stack allocated for receiving data from modem" 54 int "Init priority for the GSM modem driver" 58 The GSM modem is initialized in POST_KERNEL using priority in [all …]
|
D | gsm_ppp.c | 120 } modem; variable 138 return k_work_reschedule_for_queue(&modem.workq, dwork, delay); in gsm_work_reschedule() 188 k_sem_give(&modem.sem_response); in MODEM_CMD_DEFINE() 196 k_sem_give(&modem.sem_response); in MODEM_CMD_DEFINE() 205 k_sem_give(&modem.sem_response); in MODEM_CMD_DEFINE() 233 modem.context.data_operator = unquoted_atoi(argv[2], 10); in MODEM_CMD_DEFINE() 235 modem.context.data_operator); in MODEM_CMD_DEFINE() 239 modem.context.is_automatic_oper = true; in MODEM_CMD_DEFINE() 241 modem.context.is_automatic_oper = false; in MODEM_CMD_DEFINE() 258 out_len = net_buf_linearize(modem.minfo.mdm_manufacturer, in MODEM_CMD_DEFINE() [all …]
|
D | Kconfig.quectel-bg9x | 7 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
|
D | Kconfig.ublox-sara-r4 | 7 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
|
D | Kconfig.hl7800 | 1 # 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 …]
|
D | Kconfig.wncm14a2a | 7 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"
|
D | Kconfig.simcom-sim7080 | 16 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"
|
/Zephyr-Core-3.5.0/samples/net/cellular_modem/boards/ |
D | b_u585i_iot02a.overlay | 3 modem-uart = &usart2; 4 modem = &modem; 33 modem: modem {
|
/Zephyr-Core-3.5.0/samples/net/gsm_modem/ |
D | README.rst | 1 .. zephyr:code-sample:: gsm-modem 2 :name: Generic GSM modem 4 Use a GSM modem to connect to a GPRS network. 9 The Zephyr GSM modem sample application allows user to have a connection 10 to GPRS network. The connection to GSM modem is done using 19 - GSM modem card. The sample has been tested with SIMCOM SIM808 card. All 20 GSM modem cards should work as long as they support **AT+CGDCONT** command. 27 If you are using an external modem like the SIMCOM card, then connect 29 modem card. Internal modems, like what is found in :ref:`particle_boron`
|
/Zephyr-Core-3.5.0/doc/connectivity/networking/api/ |
D | gsm_modem.rst | 9 The generic GSM modem driver allows the user to connect Zephyr to a GSM modem 12 to the GSM modem using UART. Note that some cellular modems have proprietary 15 See :zephyr:code-sample:`GSM modem sample application <gsm-modem>` how to setup Zephyr 16 to use the GSM modem.
|
D | ppp.rst | 17 cannot be transmitted over a modem line on their own, without some data link 39 For using PPP with GSM modem, see :ref:`gsm_modem` for additional information.
|
/Zephyr-Core-3.5.0/doc/services/modem/ |
D | index.rst | 12 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,
|
/Zephyr-Core-3.5.0/samples/net/cellular_modem/src/ |
D | main.c | 23 const struct device *modem = DEVICE_DT_GET(DT_ALIAS(modem)); variable 243 pm_device_action_run(modem, PM_DEVICE_ACTION_RESUME); in main() 291 ret = pm_device_action_run(modem, PM_DEVICE_ACTION_SUSPEND); in main() 297 pm_device_action_run(modem, PM_DEVICE_ACTION_RESUME); in main() 322 ret = pm_device_action_run(modem, PM_DEVICE_ACTION_SUSPEND); in main()
|
/Zephyr-Core-3.5.0/boards/arm/particle_boron/ |
D | particle_boron_defconfig | 23 # Fix the priority to enable the modem line's serial buffer 24 # before the modem driver starts (gsm_ppp or ublox-sara-r4).
|
/Zephyr-Core-3.5.0/drivers/console/ |
D | Kconfig.gsm_mux | 11 The muxing protocol allows GSM modem to share the same UART for both 29 commands) so making it the default value. If GSM modem also provides 40 Channel number for the AT commands to the modem. 49 Channel number for the PPP connection to the modem. 50 SIMCOM modem has 16kb buffer for DLCI 1 so the manual recommends 51 it for PPP traffic. For other DLCIs in that modem, the buffer size 72 ublox-sara modem and it means we can transfer full Ethernet sized
|
/Zephyr-Core-3.5.0/drivers/wifi/esp_at/ |
D | CMakeLists.txt | 6 ${ZEPHYR_BASE}/drivers/modem
|
/Zephyr-Core-3.5.0/samples/subsys/mgmt/updatehub/ |
D | arduino.overlay | 10 gsm: gsm-modem {
|
/Zephyr-Core-3.5.0/samples/net/cloud/tagoio_http_post/ |
D | arduino.overlay | 11 gsm: gsm-modem {
|
D | README.rst | 27 * Modem: Using default configuration plus modem overlay 93 :zephyr_file:`samples/net/cloud/tagoio_http_post/overlay-modem.conf` file. A 94 DTC overlay file should be used to configure the glue between the modem and the 101 :gen-args: -DEXTRA_CONF_FILE=overlay-modem.conf 108 :gen-args: -DEXTRA_CONF_FILE=overlay-modem.conf -DDTC_OVERLAY_FILE=arduino.overlay
|
/Zephyr-Core-3.5.0/samples/net/cloud/tagoio_http_post/boards/ |
D | sam4e_xpro.overlay | 11 gsm: gsm-modem {
|
/Zephyr-Core-3.5.0/boards/arm/warp7_m4/ |
D | warp7_m4.dts | 43 modem-mode = <0>; 51 modem-mode = <0>;
|