I'd like to use the adapter interface driver command ftdi_serial
in OpenOCD where the argument has a wildcard. This is because the serial number field will not be static from device to device in my application.
So instead of passing:
ftdi_serial AXG_09876
I'd like to pass:
ftdi_serial AXG*
where *
is the wildcard. The problem is, I haven't been able to identify what character is the wildcard character for openOCD. It certainly isn't *
. Maybe there isn't one?
Any help is appreciated. Thanks in advance.