From 5f12f99761de818878e3a06541be41ef938947fb Mon Sep 17 00:00:00 2001 From: Pascal Langer Date: Sat, 1 Aug 2020 19:35:39 +0200 Subject: [PATCH] Update Validate.h --- Multiprotocol/Validate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Multiprotocol/Validate.h b/Multiprotocol/Validate.h index d6d99e476..30e1dae99 100644 --- a/Multiprotocol/Validate.h +++ b/Multiprotocol/Validate.h @@ -7,7 +7,7 @@ #if not defined(ARDUINO_AVR_PRO) && not defined(ARDUINO_MULTI_NO_BOOT) && not defined(ARDUINO_MULTI_FLASH_FROM_TX) && not defined(ARDUINO_AVR_MINI) && not defined(ARDUINO_AVR_NANO) && not defined(ARDUINO_AVR_DUEMILANOVE) #error You must select one of these boards: "Multi 4-in-1", "Arduino Pro or Pro Mini" or "Arduino Mini" #endif - #if F_CPU != 16000000L || not defined(__AVR_ATmega328P__) + #if F_CPU != 16000000L || not (defined(__AVR_ATmega328P__) || defined(__AVR_ATmega168__)) #error You must select the processor type "ATmega328(5V, 16MHz)" #endif #endif