From 344901fed6d01df6e56d9068e4f3a4742fb4095a Mon Sep 17 00:00:00 2001 From: Lvzhou Date: Fri, 13 Jan 2017 02:51:18 +0800 Subject: [PATCH] add support for arduino 101 add support for arduino 101(arc) --- csrc/u8g2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csrc/u8g2.h b/csrc/u8g2.h index ecb3f949..4c51ab99 100644 --- a/csrc/u8g2.h +++ b/csrc/u8g2.h @@ -164,7 +164,7 @@ /* the macro U8G2_USE_LARGE_FONTS disables large fonts (>32K) */ /* it can be enabled for those uC supporting larger arrays */ -#ifdef __arm__ +#if (defined __arm__) || (defined __arc__) #define U8G2_USE_LARGE_FONTS #endif