summaryrefslogtreecommitdiff
path: root/esp8266/Makefile
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2017-08-31 13:48:30 -0400
committerGitHub <noreply@github.com>2017-08-31 13:48:30 -0400
commitfdb97eda09ca1968df8a919d15ebd1fe191fb57e (patch)
tree600ed31b4d8e7223719a6099fd862c11b9b73e9e /esp8266/Makefile
parentf3cd6b0232ababc573ebfb13de12c197e0be6b4d (diff)
Add microcontroller.cpu.temperature, for use as a simple sensor on minimal boards. (#211)
* Add microcontroller.cpu, the sole instance of microcontroller.Processor. microcontroller.cpu.frequency is the clock frequency, in Hz. microcontroller.cpu.temperature is the reading from the internal temperature sensor, in Celsius. None if not available. * Squeeze firmware size by using -finline-limit. Otherwise non-Express builds were slightly too big. * Update submodules. * Fix documentation glitches
Diffstat (limited to 'esp8266/Makefile')
-rw-r--r--esp8266/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile
index 5c32160cc..3daff9c62 100644
--- a/esp8266/Makefile
+++ b/esp8266/Makefile
@@ -101,6 +101,7 @@ SRC_C = \
SRC_COMMON_HAL = \
microcontroller/__init__.c \
microcontroller/Pin.c \
+ microcontroller/Processor.c \
analogio/__init__.c \
analogio/AnalogIn.c \
analogio/AnalogOut.c \