aboutsummaryrefslogtreecommitdiff
path: root/src/cortexm.c
diff options
context:
space:
mode:
authorMarc Singer2014-12-19 16:25:22 -0800
committerMarc Singer2015-03-08 16:17:34 -0700
commite0a8ce5a887cb31f38077cd22271fd894070e0e9 (patch)
tree1276018a021270fa25445e2a428334944c07138d /src/cortexm.c
parentb6d73442cc75669f617529610b8ededdab556e18 (diff)
STM32L0x target support.
Target support for stm32l0's and stm32l1's including option bytes and data EEPROM. This module will superceed the previous stm32l1 driver. o Program flash write and erase. o Options modification and interpretive status. o Stubs for program flash writes and erases. Stubs are modestly faster than non-stub version. The stm32l0 will not execute stubs when the MCU has crashed. A monitor option may be used to force non-stub flash writes. o Stubs generated from C++ code and converted to arrays of half-words. o Writes to data EEPROM supoprted when loading segments. o EEPROM data monitor command to write words. o Stubs supported on stm32l1.
Diffstat (limited to 'src/cortexm.c')
-rw-r--r--src/cortexm.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cortexm.c b/src/cortexm.c
index a016342..71d0c6c 100644
--- a/src/cortexm.c
+++ b/src/cortexm.c
@@ -251,6 +251,7 @@ cortexm_probe(struct target_s *target)
PROBE(stm32f1_probe);
PROBE(stm32f4_probe);
+ PROBE(stm32l0_probe); /* STM32L0xx & STM32L1xx */
PROBE(stm32l1_probe);
PROBE(lpc11xx_probe);
PROBE(lpc43xx_probe);