Added config files for stm8l152 stm8s003 and stm8s105
Change-Id: I26cc401aafac01e5aed8eac605488da5221ffdc2 Signed-off-by: Ake Rehnman <ake.rehnman@gmail.com> Reviewed-on: http://openocd.zylin.com/4268 Tested-by: jenkins Reviewed-by: Paul Fertser <fercerpav@gmail.com>compliance_dev
parent
a6dea119a3
commit
cf2b9cbf5c
|
@ -0,0 +1,12 @@
|
|||
#config script for STM8L152
|
||||
|
||||
set EEPROMSTART 0x1000
|
||||
set EEPROMEND 0x13ff
|
||||
|
||||
proc stm8_reset_rop {} {
|
||||
mwb 0x4800 0xaa
|
||||
mwb 0x4800 0xaa
|
||||
reset halt
|
||||
}
|
||||
|
||||
source [find target/stm8l.cfg]
|
|
@ -0,0 +1,11 @@
|
|||
#config script for STM8S003
|
||||
|
||||
set FLASHEND 0x9FFF
|
||||
set BLOCKSIZE 0x40
|
||||
|
||||
proc stm8_reset_rop {} {
|
||||
mwb 0x4800 0x00
|
||||
reset halt
|
||||
}
|
||||
|
||||
source [find target/stm8s.cfg]
|
|
@ -0,0 +1,8 @@
|
|||
#config script for STM8S105
|
||||
|
||||
proc stm8_reset_rop {} {
|
||||
mwb 0x4800 0x00
|
||||
reset halt
|
||||
}
|
||||
|
||||
source [find target/stm8s.cfg]
|
Loading…
Reference in New Issue