From b2f09ea4144dff66b2d1a247ef00fd3a7c65ceed Mon Sep 17 00:00:00 2001 From: Alex Voinea Date: Mon, 10 Oct 2022 20:40:23 +0200 Subject: [PATCH] Fix tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Pretty please 🥺 --- src/hal/gpio.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/hal/gpio.h b/src/hal/gpio.h index d51c32f..0ae420c 100644 --- a/src/hal/gpio.h +++ b/src/hal/gpio.h @@ -1,10 +1,12 @@ /// @file gpio.h #pragma once #include -#include #ifdef __AVR__ #include +#include +#else +#define ATOMIC_BLOCK(x) #endif namespace hal {