- Tests that the API of the uart-emul also works with the async API - Tests that `uart_emul_set_release_buffer_on_timeout()` configures the behavior as expected - The tests are now splited into three different configurations: only polling API enabled, additionally interrupt driven API enabled and additionally async API enabled - Enabled `native_sim` board Signed-off-by: Ruben Völl <ruben.voell@grandcentrix.net>
16 lines
241 B
Plaintext
16 lines
241 B
Plaintext
/*
|
|
* Copyright (c) 2023 Fabian Blatz
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/ {
|
|
euart0: uart-emul {
|
|
compatible = "zephyr,uart-emul";
|
|
status = "okay";
|
|
current-speed = <0>;
|
|
rx-fifo-size = <256>;
|
|
tx-fifo-size = <256>;
|
|
};
|
|
};
|