MCPcopy Create free account
hub / github.com/Marus/cortex-debug / sendContinue

Method sendContinue

src/gdb.ts:927–938  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

925 }
926
927 private sendContinue(): Promise<void> {
928 return new Promise<void>((resolve) => {
929 this.continuing = true;
930 this.miDebugger.sendCommand('exec-continue --all').then((done) => {
931 resolve();
932 }, (e) => {
933 console.error('Not expecting continue to fail. ' + e);
934 this.continuing = false;
935 resolve();
936 });
937 });
938 }
939
940 // When we have a multi-core device, we have to allocate as many ports as needed
941 // for each core. As of now, we can only debug one core at a time but we have to know

Callers 3

finishStartSequenceMethod · 0.95
doResolveMethod · 0.95
continueIfNoMoreMethod · 0.95

Calls 1

sendCommandMethod · 0.80

Tested by

no test coverage detected