blob: 5eaf676bd783a4848602bd524ef03474e0e2102e [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 - OpenOCD extensions, bug 494059
* John Dallaway - Provide 'reset and halt' command, bug 550963
*******************************************************************************/
package org.eclipse.cdt.debug.gdbjtag.core.jtagdevice;
import java.util.Collection;
/**
* @since 9.2
*/
public class OpenOCDSocket extends DefaultGDBJtagDeviceImpl {
@Override
public String getDefaultPortNumber() {
return "3333"; //$NON-NLS-1$
}
@Override
public void doDelay(int delay, Collection<String> commands) {
addCmd(commands, "monitor sleep " + String.valueOf(delay * 1000)); //$NON-NLS-1$
}
@Override
public void doResetAndHalt(Collection<String> commands) {
addCmd(commands, "monitor reset halt"); //$NON-NLS-1$
}
}