summaryrefslogtreecommitdiff
path: root/chip/stm32/config_chip.h
diff options
context:
space:
mode:
authorVic (Chun-Ju) Yang <victoryang@chromium.org>2014-04-17 17:06:22 +0800
committerchrome-internal-fetch <chrome-internal-fetch@google.com>2014-04-20 17:52:28 +0000
commitbd1a3ffeaf6d40d96b43c1169b150ae68a6d1291 (patch)
tree110cf48927539147f8417c4e609c6998f838cbaf /chip/stm32/config_chip.h
parent35b214c1b3559d97663a3c3eecdab7689b29255a (diff)
downloadchrome-ec-bd1a3ffeaf6d40d96b43c1169b150ae68a6d1291.tar.gz
Add STM32TS60 support
This chip got small flash and RAM, so the common runtime is disabled. Now the code only boots and print something every second to check debug console and timer are good. BUG=None TEST=Boot and see console output TEST=make buildall BRANCH=None Change-Id: I01150e8250a404628d1a3b81e677ac4c29782d7f Signed-off-by: Vic (Chun-Ju) Yang <victoryang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/195382 Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'chip/stm32/config_chip.h')
-rw-r--r--chip/stm32/config_chip.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/chip/stm32/config_chip.h b/chip/stm32/config_chip.h
index a01909045c..b2479f21b9 100644
--- a/chip/stm32/config_chip.h
+++ b/chip/stm32/config_chip.h
@@ -34,6 +34,9 @@
#elif defined(CHIP_VARIANT_STM32F03X)
/* STM32F03x */
#include "config-stm32f03x.h"
+#elif defined(CHIP_VARIANT_STM32TS60)
+/* STM32TS60 */
+#include "config-stm32ts60.h"
#else
#error "Unsupported chip variant"
#endif