diff --git a/src/kaleidoscope/driver/storage/AVREEPROM.h b/src/kaleidoscope/driver/storage/AVREEPROM.h index 6a39f2b3..01e0b80b 100644 --- a/src/kaleidoscope/driver/storage/AVREEPROM.h +++ b/src/kaleidoscope/driver/storage/AVREEPROM.h @@ -17,6 +17,8 @@ #pragma once +#ifdef ARDUINO_ARCH_AVR + #include "kaleidoscope/driver/storage/Base.h" #include @@ -57,3 +59,5 @@ class AVREEPROM : public kaleidoscope::driver::storage::Base<_StorageProps> { } } } + +#endif