From d93f7db685d908d1125b9c74e4bafff2760cd2bf Mon Sep 17 00:00:00 2001 From: Eric Beaudet Date: Mon, 14 Jan 2019 21:34:41 -0500 Subject: [PATCH] Change board FQBN option in example Makefile following breaking change The esp8266/Arduino core project introduced breaking changes to the command line options and changed the 'FlashSize' parameter to 'eesz' instead. --- examples/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index 6753527..26e7be7 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,6 +1,6 @@ DEST := $(if $(DEST),$(DEST),gate) -BOARD := "esp8266:esp8266:generic:FlashSize=2M" +BOARD := "esp8266:esp8266:generic:eesz=2M" LOCAL_C_SRCS ?= $(wildcard *.c)