Home
last modified time | relevance | path

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

/mcuboot-latest/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-latest/boot/zephyr/
Dmain.c521 int timeout_in_ms = CONFIG_BOOT_SERIAL_WAIT_FOR_DFU_TIMEOUT; local
544 timeout_in_ms -= (k_uptime_get_32() - start);
545 if( timeout_in_ms <= 0 ) {
547 timeout_in_ms = 1;
549 boot_serial_check_start(&boot_funcs,timeout_in_ms);
/mcuboot-latest/boot/boot_serial/src/
Dboot_serial.c1500 boot_serial_read_console(const struct boot_uart_funcs *f,int timeout_in_ms) in boot_serial_read_console() argument
1517 while (timeout_in_ms > 0 || bs_entry) { in boot_serial_read_console()
1569 timeout_in_ms -= elapsed_in_ms; in boot_serial_read_console()
1591 boot_serial_check_start(const struct boot_uart_funcs *f, int timeout_in_ms) in boot_serial_check_start() argument
1594 boot_serial_read_console(f,timeout_in_ms); in boot_serial_check_start()