diff options
| author | Dan Halbert <halbert@halwitz.org> | 2019-03-27 16:57:35 -0400 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2019-03-27 16:57:35 -0400 |
| commit | 35ab1a1983e6889e1a808b52f9bdaae7047e1a06 (patch) | |
| tree | 29bb6c44dec313902f43bc84eb85d6dfaae82af0 | |
| parent | 94822ee2088960e6f68c9d4f05606cdb47c9ba5c (diff) | |
Turn on frequencyio only on CIRCUITPY_FULL_BUILD
| -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 0df6fff06..8ea72f0bf 100644 --- a/py/circuitpy_mpconfig.mk +++ b/py/circuitpy_mpconfig.mk @@ -93,7 +93,7 @@ endif CFLAGS += -DCIRCUITPY_DISPLAYIO=$(CIRCUITPY_DISPLAYIO) ifndef CIRCUITPY_FREQUENCYIO -CIRCUITPY_FREQUENCYIO = 1 +CIRCUITPY_FREQUENCYIO = $(CIRCUITPY_FULL_BUILD) endif CFLAGS += -DCIRCUITPY_FREQUENCYIO=$(CIRCUITPY_FREQUENCYIO) |
