diff options
| author | James Bowman <jamesb@excamera.com> | 2020-02-03 19:23:42 -0800 |
|---|---|---|
| committer | James Bowman <jamesb@excamera.com> | 2020-02-03 19:23:42 -0800 |
| commit | 8347f2b5c3a441e9c30ff70d4d779f9b236cf7df (patch) | |
| tree | 713f6db0dbd11becb5835d4f54e5733aa252d3ec | |
| parent | 0bcfabbc87b3702e0bc37442ae68856c65ac9751 (diff) | |
Correct default state to off for eveL module.
Fix build break because of overflowing small ports
| -rw-r--r-- | py/circuitpy_mpconfig.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/circuitpy_mpconfig.mk b/py/circuitpy_mpconfig.mk index f56d99478..b72eec7c5 100644 --- a/py/circuitpy_mpconfig.mk +++ b/py/circuitpy_mpconfig.mk @@ -175,7 +175,7 @@ endif CFLAGS += -DCIRCUITPY_MATH=$(CIRCUITPY_MATH) ifndef CIRCUITPY_EVEL -CIRCUITPY_EVEL = $(CIRCUITPY_ALWAYS_BUILD) +CIRCUITPY_EVEL = 0 endif CFLAGS += -DCIRCUITPY_EVEL=$(CIRCUITPY_EVEL) |
