summaryrefslogtreecommitdiff
path: root/zephyr/test/uart_printf/include/uart.h
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/test/uart_printf/include/uart.h')
-rw-r--r--zephyr/test/uart_printf/include/uart.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/zephyr/test/uart_printf/include/uart.h b/zephyr/test/uart_printf/include/uart.h
new file mode 100644
index 0000000000..51fd42a17e
--- /dev/null
+++ b/zephyr/test/uart_printf/include/uart.h
@@ -0,0 +1,28 @@
+/* Copyright 2022 The ChromiumOS Authors
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef ZEPHYR_TEST_UART_PRINTF_INCLUDE_UART_H_
+#define ZEPHYR_TEST_UART_PRINTF_INCLUDE_UART_H_
+
+#include <zephyr/fff.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+int uart_putc(int c);
+int uart_puts(const char *outstr);
+int uart_put(const char *out, int len);
+int uart_put_raw(const char *out, int len);
+int uart_printf(const char *format, ...);
+
+DECLARE_FAKE_VALUE_FUNC(int, uart_tx_char_raw, void *, int);
+DECLARE_FAKE_VOID_FUNC(uart_tx_start);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* ZEPHYR_TEST_UART_PRINTF_INCLUDE_UART_H_ */