Home
last modified time | relevance | path

Searched refs:timeout_in_ms (Results 1 – 3 of 3) sorted by relevance

/mcuboot-3.4.0/boot/boot_serial/include/boot_serial/
Dboot_serial.h53 void boot_serial_check_start(const struct boot_uart_funcs *f, int timeout_in_ms);
/mcuboot-3.4.0/boot/zephyr/
Dmain.c625 int timeout_in_ms = CONFIG_BOOT_SERIAL_WAIT_FOR_DFU_TIMEOUT; local
644 timeout_in_ms -= (k_uptime_get_32() - start);
645 if( timeout_in_ms <= 0 ) {
647 timeout_in_ms = 1;
649 boot_serial_check_start(&boot_funcs,timeout_in_ms);
/mcuboot-3.4.0/boot/boot_serial/src/
Dboot_serial.c1159 boot_serial_read_console(const struct boot_uart_funcs *f,int timeout_in_ms) in boot_serial_read_console() argument
1172 while (timeout_in_ms > 0 || bs_entry) { in boot_serial_read_console()
1218 timeout_in_ms -= elapsed_in_ms; in boot_serial_read_console()
1240 boot_serial_check_start(const struct boot_uart_funcs *f, int timeout_in_ms) in boot_serial_check_start() argument
1243 boot_serial_read_console(f,timeout_in_ms); in boot_serial_check_start()