blob: e36ea08aa0a3ca8c9bc7a32c5f8f88d8e9ddfe79 [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;
/**
* @author ajin
*
*/
public class MacraigorUsb2Demon extends DefaultGDBJtagDeviceImpl {
@Override
public String getDefaultPortNumber() {
return "8888"; //$NON-NLS-1$
}
@Override
public void doDelay(int delay, Collection<String> commands) {
addCmd(commands, "monitor sleep " + String.valueOf(delay)); //$NON-NLS-1$
}
@Override
public void doReset(Collection<String> commands) {
addCmd(commands, "monitor resetrun"); //$NON-NLS-1$
}
@Override
public void doResetAndHalt(Collection<String> commands) {
addCmd(commands, "monitor reset"); //$NON-NLS-1$
}
}