| /Zephyr-4.3.0/subsys/modem/ |
| D | modem_chat.c | 72 if ((chat == NULL) || (chat->script == NULL)) { in modem_chat_script_stop() 78 LOG_DBG("%s: complete", chat->script->name); in modem_chat_script_stop() 80 LOG_WRN("%s: aborted", chat->script->name); in modem_chat_script_stop() 82 LOG_WRN("%s: timed out", chat->script->name); in modem_chat_script_stop() 86 if (chat->script->callback != NULL) { in modem_chat_script_stop() 87 chat->script->callback(chat, result, chat->user_data); in modem_chat_script_stop() 99 chat->script = NULL; in modem_chat_script_stop() 138 &chat->script->script_chats[chat->script_chat_it]; in modem_chat_script_set_response_matches() 153 &chat->script->script_chats[chat->script_chat_it]; in modem_chat_script_chat_has_request() 161 &chat->script->script_chats[chat->script_chat_it]; in modem_chat_script_chat_has_matches() [all …]
|
| D | modem_ubx.c | 28 int modem_ubx_run_script(struct modem_ubx *ubx, struct modem_ubx_script *script) in modem_ubx_run_script() argument 31 bool wait_for_rsp = script->match.filter.class != 0; in modem_ubx_run_script() 33 ret = k_sem_take(&ubx->script_running_sem, script->timeout); in modem_ubx_run_script() 38 ubx->script = script; in modem_ubx_run_script() 41 int tries = ubx->script->retry_count + 1; in modem_ubx_run_script() 42 int32_t ms_per_attempt = (uint64_t)k_ticks_to_ms_floor64(script->timeout.ticks) / tries; in modem_ubx_run_script() 46 (const uint8_t *)ubx->script->request.buf, in modem_ubx_run_script() 47 ubx->script->request.len); in modem_ubx_run_script() 163 if (matches_filter(frame, &ubx->script->match.filter)) { in modem_ubx_process_handler() 164 memcpy(ubx->script->response.buf, frame, frame_len); in modem_ubx_process_handler() [all …]
|
| /Zephyr-4.3.0/drivers/gnss/ |
| D | gnss_u_blox_f9p.c | 49 } script; member 133 struct ubx_frame *rsp_frame = (struct ubx_frame *)data->script.inst.response.buf; in ubx_f9p_msg_get() 136 err = k_sem_take(&data->script.lock, K_SECONDS(3)); in ubx_f9p_msg_get() 142 data->script.inst.timeout = K_SECONDS(3); in ubx_f9p_msg_get() 143 data->script.inst.retry_count = 2; in ubx_f9p_msg_get() 144 data->script.inst.match.filter.class = req->class; in ubx_f9p_msg_get() 145 data->script.inst.match.filter.id = req->id; in ubx_f9p_msg_get() 146 data->script.inst.request.buf = req; in ubx_f9p_msg_get() 147 data->script.inst.request.len = len; in ubx_f9p_msg_get() 149 err = modem_ubx_run_script(&data->ubx.inst, &data->script.inst); in ubx_f9p_msg_get() [all …]
|
| D | gnss_u_blox_m8.c | 50 } script; member 111 struct ubx_frame *rsp_frame = (struct ubx_frame *)data->script.inst.response.buf; in ubx_m8_msg_get() 114 err = k_mutex_lock(&data->script.lock, K_SECONDS(3)); in ubx_m8_msg_get() 120 data->script.inst.timeout = K_SECONDS(3); in ubx_m8_msg_get() 121 data->script.inst.retry_count = 2; in ubx_m8_msg_get() 122 data->script.inst.match.filter.class = req->class; in ubx_m8_msg_get() 123 data->script.inst.match.filter.id = req->id; in ubx_m8_msg_get() 124 data->script.inst.request.buf = req; in ubx_m8_msg_get() 125 data->script.inst.request.len = len; in ubx_m8_msg_get() 127 err = modem_ubx_run_script(&data->ubx.inst, &data->script.inst); in ubx_m8_msg_get() [all …]
|
| /Zephyr-4.3.0/boards/native/common/ |
| D | natsim_linker_script.ld | 9 * @brief Extra linker command/script file for the native simulator runner 21 * Note this script augments the default native simulator linker script
|
| /Zephyr-4.3.0/tests/subsys/modem/modem_ubx/src/ |
| D | main.c | 53 struct modem_ubx_script script; member 95 .script = { in restore_ubx_script() 129 int ret = modem_ubx_run_script(&cmd, &runner->script); in script_runner_handler() 169 test_script_runner.script.match.filter.class = 0; in ZTEST() 186 test_script_runner.script.timeout = K_SECONDS(3); in ZTEST() 187 test_script_runner.script.retry_count = 2; /* 2 Retries -> 3 Tries */ in ZTEST() 194 for (size_t i = 0 ; i < (test_script_runner.script.retry_count + 1) ; i++) { in ZTEST() 227 test_script_runner.script.response.received_len, in ZTEST() 230 test_script_runner.script.response.received_len); in ZTEST() 237 .script = { in ZTEST() [all …]
|
| /Zephyr-4.3.0/include/zephyr/modem/ |
| D | chat.h | 262 const struct modem_chat_script *script; member 358 int modem_chat_run_script_async(struct modem_chat *chat, const struct modem_chat_script *script); 370 int modem_chat_run_script(struct modem_chat *chat, const struct modem_chat_script *script); 383 const struct modem_chat_script *script) in modem_chat_script_run() argument 385 return modem_chat_run_script_async(chat, script); in modem_chat_script_run() 493 void modem_chat_script_init(struct modem_chat_script *script); 501 void modem_chat_script_set_name(struct modem_chat_script *script, const char *name); 512 int modem_chat_script_set_script_chats(struct modem_chat_script *script, 525 int modem_chat_script_set_abort_matches(struct modem_chat_script *script, 534 void modem_chat_script_set_callback(struct modem_chat_script *script, [all …]
|
| D | ubx.h | 77 struct modem_ubx_script *script; member 150 int modem_ubx_run_script(struct modem_ubx *ubx, struct modem_ubx_script *script); 152 int modem_ubx_run_script_for_each(struct modem_ubx *ubx, struct modem_ubx_script *script,
|
| /Zephyr-4.3.0/scripts/coccinelle/ |
| D | boolean.cocci | 27 @ script:python @ 45 @ script:python @ 59 @ script:python @ 74 @ script:python @ 95 @ script:python @
|
| D | semicolon.cocci | 58 @script:python@ 70 @script:python depends on report@ 80 @script:python depends on org@
|
| /Zephyr-4.3.0/scripts/native_simulator/common/other/ |
| D | linker_script.pre.ld | 9 * @brief Linker command/script file for the native simulator runner 44 * Note this script augments the default host linker script
|
| /Zephyr-4.3.0/soc/egis/et171/ |
| D | linker.ld | 9 * @brief Linker command/script file 11 * Linker script for the et171 platform
|
| /Zephyr-4.3.0/tests/application_development/code_relocation/ |
| D | linker_arm_sram2.ld | 9 * @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-4.3.0/scripts/net/ |
| D | README.txt | 1 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-4.3.0/cmake/ |
| D | verify-toolchain.cmake | 4 # 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-4.3.0/soc/infineon/edge/pse84/ |
| D | linker.ld | 10 * @brief Linker command/script file 12 * This is the linker script for both standard images and XIP images.
|
| /Zephyr-4.3.0/soc/nxp/imxrt/imxrt5xx/cm33/ |
| D | linker.ld | 8 * @brief Linker command/script file 10 * This is the linker script for both standard images and XIP images.
|
| /Zephyr-4.3.0/soc/nxp/mcx/mcxw/mcxw2xx/ |
| D | linker.ld | 9 * @brief Linker command/script file 11 * This is the linker script for both standard images and XIP images.
|
| /Zephyr-4.3.0/soc/nxp/lpc/lpc54xxx/ |
| D | linker.ld | 9 * @brief Linker command/script file 11 * This is the linker script for both standard images and XIP images.
|
| /Zephyr-4.3.0/soc/nxp/lpc/lpc55xxx/ |
| D | linker.ld | 9 * @brief Linker command/script file 11 * This is the linker script for both standard images and XIP images.
|
| /Zephyr-4.3.0/cmake/flash/ |
| D | check_runner_dependencies.cmake | 3 # The purpose of this script is to ensure that no runners targets contains 8 # Arguments to the script
|
| /Zephyr-4.3.0/samples/subsys/zbus/remote_mock/ |
| D | README.rst | 10 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-4.3.0/cmake/emu/ |
| D | renode.cmake | 14 # Check if there is any Renode script overlay defined for the target board 18 message(STATUS "Found Renode script overlay: ${resc_overlay_file}")
|
| /Zephyr-4.3.0/soc/gaisler/leon3/ |
| D | linker.ld | 9 * @brief Linker command/script file 11 * Linker script for LEON3
|
| /Zephyr-4.3.0/samples/subsys/pmci/mctp/usb_endpoint/ |
| D | requirements.txt | 1 # Needed to run USB host test script.
|