From 34746d3783af1ae601487c88f0a7e44f81842618 Mon Sep 17 00:00:00 2001 From: Oxore Date: Thu, 9 Mar 2023 01:42:59 +0300 Subject: Impl UART buffering (still not tested) --- app/platform/platform.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 app/platform/platform.h (limited to 'app/platform/platform.h') diff --git a/app/platform/platform.h b/app/platform/platform.h new file mode 100644 index 0000000..c28300e --- /dev/null +++ b/app/platform/platform.h @@ -0,0 +1,13 @@ +#pragma once + +#ifdef __cplusplus +extern "C" { +#endif + +void PlatformInit(void); +int PlatformGetWiFiFileDescriptor(void); +int PlatformGetGPSFileDescriptor(void); + +#ifdef __cplusplus +} +#endif -- cgit v1.2.3