From 4d072e20ed49d56e25350733d2feca26f67d1bab Mon Sep 17 00:00:00 2001 From: Our Air Quality Date: Sun, 17 Jun 2018 20:31:11 +1000 Subject: [PATCH] sysparam editor: avoid saving any wifi params to flash --- examples/sysparam_editor/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/sysparam_editor/Makefile b/examples/sysparam_editor/Makefile index f63e4e5..2773185 100644 --- a/examples/sysparam_editor/Makefile +++ b/examples/sysparam_editor/Makefile @@ -1,7 +1,10 @@ PROGRAM=sysparam_editor # Setting this to 1..3 will add extra debugging output to stdout -EXTRA_CFLAGS=-DSYSPARAM_DEBUG=0 +EXTRA_CFLAGS = -DSYSPARAM_DEBUG=0 + +# Avoid writing the wifi state to flash when using wificfg. +EXTRA_CFLAGS += -DWIFI_PARAM_SAVE=0 include ../../common.mk