From 44fb7dcdaae7463af2b55fdcc0e298a06bb1fcb7 Mon Sep 17 00:00:00 2001 From: pascallanger Date: Thu, 3 Mar 2016 16:34:57 +0100 Subject: [PATCH] Add Arduino Mini has a supported platform. --- Multiprotocol/multiprotocol.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Multiprotocol/multiprotocol.h b/Multiprotocol/multiprotocol.h index d5a51aa..37a8e36 100644 --- a/Multiprotocol/multiprotocol.h +++ b/Multiprotocol/multiprotocol.h @@ -14,8 +14,8 @@ */ // Check selected board type -#ifndef ARDUINO_AVR_PRO - #error You must select the board type "Arduino Pro or Pro Mini" +#if not defined(ARDUINO_AVR_PRO) && not defined(ARDUINO_AVR_MINI) + #error You must select the board type "Arduino Pro or Pro Mini" or "Arduino Mini" #endif #if F_CPU != 16000000L || not defined(__AVR_ATmega328P__) #error You must select the processor type "ATmega328(5V, 16MHz)"