Commit f09111a2 authored by Johann Fischer's avatar Johann Fischer Committed by Carles Cufi
Browse files

samples: cdc_acm: do not block for one second after DTR set



There is no need to block the thread for a second.
Let it sleep for 100 milliseconds, which should be enough
to set the host baud rate.

Signed-off-by: default avatarJohann Fischer <johann.fischer@nordicsemi.no>
parent 7a90b221
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -200,8 +200,8 @@ void main(void)
		LOG_WRN("Failed to set DSR, ret code %d", ret);
	}

	/* Wait 1 sec for the host to do all settings */
	k_busy_wait(1000000);
	/* Wait 100ms for the host to do all settings */
	k_msleep(100);

	ret = uart_line_ctrl_get(dev, UART_LINE_CTRL_BAUD_RATE, &baudrate);
	if (ret) {