mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-08-06 10:27:34 +00:00
First sta-Core rework to work for Arduino
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
@@ -8,8 +8,14 @@
|
||||
#include <sta/bus/uart/uart.hpp>
|
||||
#include <sta/debug/printing/printable.hpp>
|
||||
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
#include <sta/config.hpp>
|
||||
#ifdef STA_PLATFORM_ARDUINO
|
||||
# include <stddef.h>
|
||||
# include <stdint.h>
|
||||
#else
|
||||
# include <cstddef>
|
||||
# include <cstdint>
|
||||
#endif // STA_PLATFORM_ARDUINO
|
||||
|
||||
|
||||
namespace sta
|
||||
|
Reference in New Issue
Block a user