Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,13 @@ public String getServerCommandName() {

@Override
public int getServerLaunchTimeoutSeconds() {
return Platform.getPreferencesService().getInt(IDFCorePlugin.PLUGIN_ID, Activator.GDB_SERVER_LAUNCH_TIMEOUT,
int timeout = Platform.getPreferencesService().getInt(IDFCorePlugin.PLUGIN_ID, Activator.GDB_SERVER_LAUNCH_TIMEOUT,
fGdbServerLaunchDefaultTimeout, null);

if (Activator.getInstance().isDebugging()) {
System.out.println("Gdb Server Timeout:" + timeout);
}
return timeout;
}

public String getServerName() {
Expand Down
3 changes: 2 additions & 1 deletion bundles/com.espressif.idf.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ Require-Bundle: org.eclipse.core.runtime,
org.eclipse.embedcdt.ui,
org.eclipse.ltk.ui.refactoring,
org.eclipse.ltk.core.refactoring,
org.eclipse.epp.mpc.ui
org.eclipse.epp.mpc.ui,
org.eclipse.ui.trace;resolution:=optional
Automatic-Module-Name: com.espressif.idf.ui
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: JavaSE-11
Expand Down