X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=tcl%2Ftarget%2Flpc11uxx.cfg;fp=tcl%2Ftarget%2Flpc11uxx.cfg;h=0000000000000000000000000000000000000000;hb=b5a6ba46aaed530a4b1397b9617de0ff316f6efb;hp=2a519fbc7f20daea9a8c4791960b822a78ef2e13;hpb=1e439e2a9a4392586bdfce0ebab4d63690f7fe6e;p=openocd.git diff --git a/tcl/target/lpc11uxx.cfg b/tcl/target/lpc11uxx.cfg deleted file mode 100644 index 2a519fbc7f..0000000000 --- a/tcl/target/lpc11uxx.cfg +++ /dev/null @@ -1,50 +0,0 @@ -# -# NXP lpc11uxx family - -source [find target/swj-dp.tcl] - -if { [info exists CHIPNAME] } { - set _CHIPNAME $CHIPNAME -} else { - set _CHIPNAME lpc11uxx -} - -if { [info exists ENDIAN] } { - set _ENDIAN $ENDIAN -} else { - set _ENDIAN little -} - -# Work-area is a space in RAM used for flash programming -# By default use 6kB -if { [info exists WORKAREASIZE] } { - set _WORKAREASIZE $WORKAREASIZE -} else { - set _WORKAREASIZE 0x1800 -} - -if { [info exists CPUTAPID] } { - set _CPUTAPID $CPUTAPID -} else { - set _CPUTAPID 0x00000000 -} - -# delays on reset lines -adapter_nsrst_delay 100 -#jtag_ntrst_delay 100 - -swj_newdap $_CHIPNAME cpu -irlen 4 -expected-id $_CPUTAPID - -set _TARGETNAME $_CHIPNAME.cpu -target create $_TARGETNAME cortex_m -endian $_ENDIAN -chain-position $_TARGETNAME - -$_TARGETNAME configure -work-area-phys 0x10000000 -work-area-size $_WORKAREASIZE -work-area-backup 0 - -#set _FLASHNAME $_CHIPNAME.flash -#flash bank $_FLASHNAME lpc2000 0 0 0 0 $_TARGETNAME - -if {![using_hla]} { - # if srst is not fitted use SYSRESETREQ to - # perform a soft reset - cortex_m reset_config sysresetreq -}