Fixed missing headers

This commit is contained in:
BlackMark 2019-08-02 20:23:54 +02:00
parent 925bb56f98
commit 33c3cedb1e
4 changed files with 14 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#pragma once #pragma once
#include <stdint.h>
namespace uart { namespace uart {
enum class DataBits { enum class DataBits {

View File

@ -1,5 +1,9 @@
#pragma once #pragma once
#include "../clock.h"
#include <stdint.h>
#define FORCE_INLINE __attribute__((always_inline)) #define FORCE_INLINE __attribute__((always_inline))
namespace uart { namespace uart {

View File

@ -1,5 +1,9 @@
#pragma once #pragma once
#include <stdint.h>
#include <avr/io.h>
#include "config.hpp" #include "config.hpp"
#include "hardware.hpp" #include "hardware.hpp"

View File

@ -1,5 +1,9 @@
#pragma once #pragma once
#include <stdint.h>
#include <avr/io.h>
#include "config.hpp" #include "config.hpp"
#include "hardware.hpp" #include "hardware.hpp"