diff options
author | Vincent Palatin <vpalatin@chromium.org> | 2014-03-03 11:10:45 -0800 |
---|---|---|
committer | chrome-internal-fetch <chrome-internal-fetch@google.com> | 2014-03-11 05:52:44 +0000 |
commit | 39327cc4cd80e8f5ba30435d497c666e10cd0054 (patch) | |
tree | 33213c418e5e72177f990ec88f1a6bc882416f10 /util | |
parent | 0f73a129b42acfcad843203b602fbbcc8894c614 (diff) | |
download | chrome-ec-39327cc4cd80e8f5ba30435d497c666e10cd0054.tar.gz |
stm32: add support for STM32F0xx family
Add support for the STM32F0xx family of devices using a Cortex-M0 core
and slightly newer peripherals than F1xx family.
Signed-off-by: Vincent Palatin <vpalatin@chromium.org>
BRANCH=none
BUG=none
TEST=run EC console on STM32F072B Discovery board.
and pass all available unit-tests on target.
Change-Id: Idaa3fcbf1c0da8a8f448c0e88e58bfd976b0a735
Reviewed-on: https://chromium-review.googlesource.com/188983
Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
Commit-Queue: Vincent Palatin <vpalatin@chromium.org>
Tested-by: Vincent Palatin <vpalatin@chromium.org>
Diffstat (limited to 'util')
-rw-r--r-- | util/stm32mon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/stm32mon.c b/util/stm32mon.c index e018e4898c..4b1a5438a9 100644 --- a/util/stm32mon.c +++ b/util/stm32mon.c @@ -57,6 +57,7 @@ struct stm32_def { {0x427, "STM32L15xxC", 0x08000000, 0x40000, 256}, {0x420, "STM32F100xx", 0x08000000, 0x20000, 1024}, {0x410, "STM32F102R8", 0x08000000, 0x10000, 1024}, + {0x448, "STM32F07xB", 0x08000000, 0x20000, 1024}, { 0 } }; |