mirror of
https://git.code.sf.net/p/openocd/code
synced 2024-11-24 22:16:31 +00:00
f4d81cd4d4
Provide cable specific configuration files like for the FTDI interface. Depcrecate the old configuration files but keep them until the next release for compatibility reasons. Change-Id: I436bd60779a107120c9e1b1f0b8a69a39a240ad4 Signed-off-by: Marc Schink <dev@zapb.de> Reviewed-on: https://review.openocd.org/c/openocd/+/8514 Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com> Tested-by: jenkins
22 lines
421 B
INI
22 lines
421 B
INI
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#
|
|
# 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
|