mirror of
git://git.code.sf.net/p/openocd/code
synced 2025-07-18 15:20:06 +10:00
Change-Id: Iffe7a04c36c6ec680497081a99d55b8c69f8f079 Signed-off-by: Marc Schink <dev@zapb.de> Reviewed-on: http://openocd.zylin.com/6386 Tested-by: jenkins Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
20 lines
376 B
INI
20 lines
376 B
INI
#
|
|
# Parallel port wiggler (many clones available) on port 0x378
|
|
#
|
|
# Addresses: 0x378/LPT1 or 0x278/LPT2 ...
|
|
#
|
|
|
|
if { [info exists PARPORTADDR] } {
|
|
set _PARPORTADDR $PARPORTADDR
|
|
} else {
|
|
if {$tcl_platform(platform) eq "windows"} {
|
|
set _PARPORTADDR 0x378
|
|
} {
|
|
set _PARPORTADDR 0
|
|
}
|
|
}
|
|
|
|
adapter driver parport
|
|
parport port $_PARPORTADDR
|
|
parport cable wiggler
|