summaryrefslogtreecommitdiff
path: root/app/platform/stm32f0-gcc/uart.h
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2023-03-07 19:10:25 +0300
committerOxore <oxore@protonmail.com>2023-03-07 19:10:25 +0300
commit3282a756679019fd723346cc3bc584cc582eb669 (patch)
treea1992e7851fee8ca07929bb8c9f0877a7401d70c /app/platform/stm32f0-gcc/uart.h
parentac69a640ba9dde383b9c3ddca59c3d6d14ea5b2e (diff)
Begin implementing serial descriptors
Diffstat (limited to 'app/platform/stm32f0-gcc/uart.h')
-rw-r--r--app/platform/stm32f0-gcc/uart.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/app/platform/stm32f0-gcc/uart.h b/app/platform/stm32f0-gcc/uart.h
new file mode 100644
index 0000000..176f847
--- /dev/null
+++ b/app/platform/stm32f0-gcc/uart.h
@@ -0,0 +1,12 @@
+#pragma once
+#include <cstddef>
+#include "stm32f0xx.h"
+
+// Non-blocking buffered write
+size_t UARTWrite(USART_TypeDef*, const void *data, size_t nbytes);
+// Blocking write directly into data register
+size_t UARTWriteDirect(USART_TypeDef*, const void *data, size_t nbytes);
+// Non-blocking buffered read
+size_t UARTRead(USART_TypeDef*, void *data, size_t nbytes);
+// Blocking read directly from data register
+size_t UARTReadDirect(USART_TypeDef*, void *data, size_t nbytes);