Home
last modified time | relevance | path

Searched refs:script (Results 1 – 25 of 304) sorted by relevance

12345678910>>...13

/Zephyr-latest/subsys/modem/
Dmodem_chat.c70 if ((chat == NULL) || (chat->script == NULL)) { in modem_chat_script_stop()
76 LOG_DBG("%s: complete", chat->script->name); in modem_chat_script_stop()
78 LOG_WRN("%s: aborted", chat->script->name); in modem_chat_script_stop()
80 LOG_WRN("%s: timed out", chat->script->name); in modem_chat_script_stop()
84 if (chat->script->callback != NULL) { in modem_chat_script_stop()
85 chat->script->callback(chat, result, chat->user_data); in modem_chat_script_stop()
97 chat->script = NULL; in modem_chat_script_stop()
136 &chat->script->script_chats[chat->script_chat_it]; in modem_chat_script_set_response_matches()
151 &chat->script->script_chats[chat->script_chat_it]; in modem_chat_script_chat_has_request()
159 &chat->script->script_chats[chat->script_chat_it]; in modem_chat_script_chat_has_matches()
[all …]
Dmodem_ubx.c108 static void modem_ubx_script_init(struct modem_ubx *ubx, const struct modem_ubx_script *script) in modem_ubx_script_init() argument
110 ubx->script = script; in modem_ubx_script_init()
113 static int modem_ubx_run_script_helper(struct modem_ubx *ubx, const struct modem_ubx_script *script) in modem_ubx_run_script_helper() argument
127 if (ubx->script->match == NULL) { in modem_ubx_run_script_helper()
131 ret = k_sem_take(&ubx->script_stopped_sem, script->timeout); in modem_ubx_run_script_helper()
139 int modem_ubx_run_script(struct modem_ubx *ubx, const struct modem_ubx_script *script) in modem_ubx_run_script() argument
143 if (modem_ubx_get_frame_length(script->request) > UBX_FRM_SZ_MAX) { in modem_ubx_run_script()
156 modem_ubx_script_init(ubx, script); in modem_ubx_run_script()
158 for (attempt = 0; attempt < script->retry_count; ++attempt) { in modem_ubx_run_script()
159 ret = modem_ubx_run_script_helper(ubx, script); in modem_ubx_run_script()
[all …]
/Zephyr-latest/boards/native/common/
Dnatsim_linker_script.ld9 * @brief Extra linker command/script file for the native simulator runner
21 * Note this script augments the default native simulator linker script
/Zephyr-latest/include/zephyr/modem/
Dchat.h249 const struct modem_chat_script *script; member
337 int modem_chat_run_script_async(struct modem_chat *chat, const struct modem_chat_script *script);
349 int modem_chat_run_script(struct modem_chat *chat, const struct modem_chat_script *script);
362 const struct modem_chat_script *script) in modem_chat_script_run() argument
364 return modem_chat_run_script_async(chat, script); in modem_chat_script_run()
472 void modem_chat_script_init(struct modem_chat_script *script);
480 void modem_chat_script_set_name(struct modem_chat_script *script, const char *name);
491 int modem_chat_script_set_script_chats(struct modem_chat_script *script,
504 int modem_chat_script_set_abort_matches(struct modem_chat_script *script,
513 void modem_chat_script_set_callback(struct modem_chat_script *script,
[all …]
/Zephyr-latest/drivers/gnss/
Dgnss_u_blox_m8.c74 struct modem_ubx_script script; member
235 data->script.request = (struct ubx_frame *)data->request_buf; in ubx_m8_modem_ubx_script_fill()
236 data->script.response = (struct ubx_frame *)data->response_buf; in ubx_m8_modem_ubx_script_fill()
237 data->script.match = (struct ubx_frame *)data->match_buf; in ubx_m8_modem_ubx_script_fill()
238 data->script.retry_count = UBX_M8_SCRIPT_RETRY_DEFAULT; in ubx_m8_modem_ubx_script_fill()
239 data->script.timeout = K_MSEC(MODEM_UBX_SCRIPT_TIMEOUT_MS); in ubx_m8_modem_ubx_script_fill()
283 ret = ubx_m8_modem_ubx_run_script(dev, &(data->script)); in ubx_m8_ubx_cfg_rate()
310 data->script.retry_count = retry; in ubx_m8_ubx_cfg_prt_set()
316 ret = ubx_m8_modem_ubx_run_script(dev, &(data->script)); in ubx_m8_ubx_cfg_prt_set()
344 data->script.match = NULL; in ubx_m8_ubx_cfg_rst()
[all …]
/Zephyr-latest/scripts/coccinelle/
Dboolean.cocci27 @ script:python @
45 @ script:python @
59 @ script:python @
74 @ script:python @
95 @ script:python @
Dsemicolon.cocci58 @script:python@
70 @script:python depends on report@
80 @script:python depends on org@
Dsame_identifier.cocci26 @ script:python @
47 @ script:python @
68 @ script:python @
Dunsigned_lesser_than_zero.cocci21 @script:python depends on org@
28 @script:python depends on report@
/Zephyr-latest/scripts/native_simulator/common/other/
Dlinker_script.pre.ld9 * @brief Linker command/script file for the native simulator runner
44 * Note this script augments the default host linker script
/Zephyr-latest/scripts/net/
DREADME.txt1 The shell script run-sample-tests.sh runs selected Zephyr samples against
22 This creates a Docker image called 'net-tools' which the script will need as
29 The scripts/net/run-sample-tests.sh shell script can be used in two ways:
37 2. By giving the test directories as parameters to the runner script.
49 by the script, as well as Zephyr using native_sim board. IP addresses are
60 the echo_server application uses those ending in .2. The script does the IP
65 container, is returned to the script on Zephyr or Docker application
73 The sample test script tries to automatically figure out the Zephyr base
76 '--zephyr-dir' command line arguments. The sample test script also assumes
/Zephyr-latest/tests/application_development/code_relocation/
Dlinker_arm_sram2.ld9 * @brief Linker command/script file
11 * Linker script for the Cortex-M platforms.
21 * this is just an example to show relocation of code/data/bss script
/Zephyr-latest/cmake/
Dverify-toolchain.cmake4 # This file is intended to be executed in script mode so that it can be used in
7 # When invoked as a script with -P:
16 message(FATAL_ERROR "verify-toolchain.cmake is a script and must be invoked "
22 # If executing in script mode and output format is specified, then silence
/Zephyr-latest/soc/nxp/lpc/lpc55xxx/
Dlinker.ld9 * @brief Linker command/script file
11 * This is the linker script for both standard images and XIP images.
/Zephyr-latest/soc/nxp/lpc/lpc54xxx/
Dlinker.ld9 * @brief Linker command/script file
11 * This is the linker script for both standard images and XIP images.
/Zephyr-latest/samples/subsys/zbus/remote_mock/
DREADME.rst10 This application demonstrates how a host script can publish to the zbus in an embedded device using…
11 …the script running on a computer host. Then, the script sends back information when it would simul…
13 …lability and observability since we can control and access what is sent and received by the script.
59 The :file:`remote_mock.py` script can be executed using the following command:
72 From the remote mock (Python script), you would see something like this:
99 Exit the remote mock script by pressing :kbd:`CTRL+C`.
/Zephyr-latest/cmake/flash/
Dcheck_runner_dependencies.cmake3 # The purpose of this script is to ensure that no runners targets contains
8 # Arguments to the script
/Zephyr-latest/soc/nxp/imxrt/imxrt5xx/cm33/
Dlinker.ld8 * @brief Linker command/script file
10 * This is the linker script for both standard images and XIP images.
/Zephyr-latest/cmake/emu/
Drenode.cmake14 # Check if there is any Renode script overlay defined for the target board
18 message(STATUS "Found Renode script overlay: ${resc_overlay_file}")
/Zephyr-latest/soc/gaisler/leon3/
Dlinker.ld9 * @brief Linker command/script file
11 * Linker script for LEON3
/Zephyr-latest/soc/intel/intel_adsp/tools/
Dremote-fw-service.py209 child_desc = " ".join(runner.script) + f", PID={proc.pid}"
254 self.script = None
262 self.script = [f'sudo', f'{self.load_cmd}']
264 self.script = [f'{self.load_cmd}']
266 self.script.append(f'{self.fw_file}')
270 self.script.append(param)
273 return self.script
/Zephyr-latest/scripts/ci/
Dguideline_check.py78 for script in coccinelle_scripts:
81 if script == RESERVED_NAMES_SCRIPT:
90 script_path =zephyr_base + "/" + script
/Zephyr-latest/boards/snps/em_starterkit/support/
Dopenocd.cfg12 # "set _ZEPHYR_BOARD_SERIAL 12345" before reading this script
23 # Configure FPGA. This script supports both LX45 and LX150.
/Zephyr-latest/doc/develop/toolchains/
Dzephyr_sdk.rst34 script. Additional OS-specific instructions are described in the sections below.
43 by running the setup script. If you decide not to register the Zephyr SDK in the CMake registry,
121 #. Run the Zephyr SDK bundle setup script:
129 You only need to run the setup script once after extracting the Zephyr SDK bundle.
131 You must rerun the setup script if you relocate the Zephyr SDK bundle directory after
177 #. Run the Zephyr SDK bundle setup script:
185 You only need to run the setup script once after extracting the Zephyr SDK bundle.
187 You must rerun the setup script if you relocate the Zephyr SDK bundle directory after
219 #. Run the Zephyr SDK bundle setup script:
227 You only need to run the setup script once after extracting the Zephyr SDK bundle.
[all …]
/Zephyr-latest/samples/boards/intel/adsp/code_relocation/
DREADME.rst4 Relocate code using custom linker script.
13 linker script to ensure that.

12345678910>>...13