First sta-Core rework to work for Arduino

This commit is contained in:
dario
2024-02-09 14:33:05 +01:00
parent 7f451cd868
commit 4490c68ee3
19 changed files with 96 additions and 35 deletions

View File

@@ -5,9 +5,14 @@
#ifndef STA_CORE_PRINTABLE_HPP
#define STA_CORE_PRINTABLE_HPP
#include <cstddef>
#include <cstdint>
#include <sta/config.hpp>
#ifdef STA_PLATFORM_ARDUINO
# include <stdint.h>
# include <stddef.h>
#else
# include <cstddef>
# include <cstdint>
#endif
namespace sta
{