blob: 9e9685fbd56f0f38014efad5f195791d763c15f0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2019 QNX Software Systems and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* QNX Software Systems - Initial API and implementation
* Andy Jin - Hardware debugging UI improvements, bug 229946
* John Dallaway - Provide 'reset and halt' command, bug 550963
*******************************************************************************/
package org.eclipse.cdt.debug.gdbjtag.core.jtagdevice;
import java.util.Collection;
public class AbatronBDI2000 extends DefaultGDBJtagDeviceImpl {
@Override
public String getDefaultIpAddress() {
return "bdi2000"; //$NON-NLS-1$
}
@Override
public String getDefaultPortNumber() {
return "2001"; //$NON-NLS-1$
}
@Override
public void doResetAndHalt(Collection<String> commands) {
addCmd(commands, "monitor reset halt"); //$NON-NLS-1$
}
}