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.c493 int timeout_in_ms = CONFIG_BOOT_SERIAL_WAIT_FOR_DFU_TIMEOUT; local
513 timeout_in_ms -= (k_uptime_get_32() - start);
514 if( timeout_in_ms <= 0 ) {
516 timeout_in_ms = 1;
518 boot_serial_check_start(&boot_funcs,timeout_in_ms);
/mcuboot-latest/boot/boot_serial/src/
Dboot_serial.c1344 boot_serial_read_console(const struct boot_uart_funcs *f,int timeout_in_ms) in boot_serial_read_console() argument
1361 while (timeout_in_ms > 0 || bs_entry) { in boot_serial_read_console()
1413 timeout_in_ms -= elapsed_in_ms; in boot_serial_read_console()
1435 boot_serial_check_start(const struct boot_uart_funcs *f, int timeout_in_ms) in boot_serial_check_start() argument
1438 boot_serial_read_console(f,timeout_in_ms); in boot_serial_check_start()