diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2020-04-30 15:24:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-30 15:24:03 -0700 |
| commit | b3b6a64ed7fb10ffb61bc1b71ba4083bca3ada30 (patch) | |
| tree | 706a8a6007251af6eb996a710423c8cf4de1480c /py | |
| parent | 10c5bf666e09226817a70651b1bf8c4e55c6e36e (diff) | |
| parent | a863b0a3490c55b0e7e1321d9ac9cf249a6addd5 (diff) | |
Merge pull request #2685 from tannewt/lower_power
Lower power by using the Wait for Interrupt (WFI) instruction
Diffstat (limited to 'py')
| -rw-r--r-- | py/circuitpy_defns.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/py/circuitpy_defns.mk b/py/circuitpy_defns.mk index 78ab41e12..ec8e6c3e9 100644 --- a/py/circuitpy_defns.mk +++ b/py/circuitpy_defns.mk @@ -290,8 +290,7 @@ SRC_COMMON_HAL_ALL = \ rtc/RTC.c \ rtc/__init__.c \ supervisor/Runtime.c \ - supervisor/__init__.c \ - time/__init__.c + supervisor/__init__.c SRC_COMMON_HAL = $(filter $(SRC_PATTERNS), $(SRC_COMMON_HAL_ALL)) @@ -309,7 +308,7 @@ $(filter $(SRC_PATTERNS), \ fontio/Glyph.c \ microcontroller/RunMode.c \ math/__init__.c \ - _eve/__init__.c \ + _eve/__init__.c \ ) SRC_BINDINGS_ENUMS += \ @@ -370,13 +369,14 @@ SRC_SHARED_MODULE_ALL = \ rgbmatrix/__init__.c \ storage/__init__.c \ struct/__init__.c \ + time/__init__.c \ terminalio/Terminal.c \ terminalio/__init__.c \ uheap/__init__.c \ ustack/__init__.c \ _pew/__init__.c \ _pew/PewPew.c \ - _eve/__init__.c + _eve/__init__.c # All possible sources are listed here, and are filtered by SRC_PATTERNS. SRC_SHARED_MODULE = $(filter $(SRC_PATTERNS), $(SRC_SHARED_MODULE_ALL)) |
