Skip to content

Commit 0e78f44

Browse files
committed
fix image links in README
Signed-off-by: Jens Reinecke <jens.reinecke@arm.com>
1 parent 092d840 commit 0e78f44

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

README.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,18 @@ your debug configuration's `target`>`server` setting to contain the full path to
8484
There are two ways to start a debug session:
8585

8686
1. If you have installed the CMSIS Solution extension, in the **CMSIS view**
87-
![CMSIS view](./images/cmsis-view-icon.png), click on the **Debug** icon
88-
![Debug icon in the CMSIS view](./images/debug-icon.png). Depending on the number of configurations in your
87+
![CMSIS view](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/cmsis-view-icon.png), click on the **Debug** icon
88+
![Debug icon in the CMSIS view](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/debug-icon.png). Depending on the number of configurations in your
8989
`launch.json` file, you will be asked to select a configuration for the debug session.
9090

91-
2. In the **Run and debug view** ![Run and debug view](./images/run-debug-view-icon.png), click the **Play** icon
92-
next to the selected debug connection ![Play button](./images/play-debug-button.png). The debug starts with the
91+
2. In the **Run and debug view** ![Run and debug view](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/run-debug-view-icon.png), click the **Play** icon
92+
next to the selected debug connection ![Play button](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/play-debug-button.png). The debug starts with the
9393
selected configuration.
9494

9595
The debugger loads the application program and executes the startup code. When program execution stops (by default at
9696
`main`), the source code opens at the next executable statement which is marked with a yellow arrow in the editor:
9797

98-
![Execution stopped at main](./images/stop-at-main.png)
98+
![Execution stopped at main](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/stop-at-main.png)
9999

100100
Most editor features are available in debug mode. For example, developers can use the Find command and can correct program
101101
errors.
@@ -104,14 +104,14 @@ errors.
104104

105105
If you do not wish to enter a debug session, you can issue a flash download only, followed by a reset of the device.
106106

107-
In the **CMSIS view** ![CMSIS view](./images/cmsis-view-icon.png), click on the **Run** icon
108-
![Run icon in the CMSIS view](./images/run-icon.png).
107+
In the **CMSIS view** ![CMSIS view](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/cmsis-view-icon.png), click on the **Run** icon
108+
![Run icon in the CMSIS view](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/run-icon.png).
109109

110110
## Run and Debug view
111111

112-
![Run and Debug view](./images/run-debug-view.png)
112+
![Run and Debug view](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/run-debug-view.png)
113113

114-
The **Run and debug view** ![Run and debug view](./images/run-debug-view-icon.png) differs from the other views in the
114+
The **Run and debug view** ![Run and debug view](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/run-debug-view-icon.png) differs from the other views in the
115115
following aspects:
116116

117117
- [Debug toolbar](#debug-toolbar) is available.
@@ -144,7 +144,7 @@ Once a debug session starts, the **Debug toolbar** appears at the top of the win
144144
control the flow of the debug session, such as stepping through code, pausing execution, and stopping the debug
145145
session.
146146

147-
![Debug toolbar](./images/debug-toolbar.png)
147+
![Debug toolbar](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/debug-toolbar.png)
148148

149149
The following table describes the actions available in the debug toolbar:
150150

@@ -168,7 +168,7 @@ During a debugging session, you can inspect variables, expressions, and register
168168
relative to the selected stack frame in the **CALL STACK section**. In case of multi-core, registers are relative to
169169
the core that you are debugging.
170170

171-
![VARIABLES section](./images/VARIABLES-section.png)
171+
![VARIABLES section](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/VARIABLES-section.png)
172172

173173
To change the value of a variable during the debugging session, right-click on the variable in the
174174
**VARIABLES section** and select **Set Value**.
@@ -179,20 +179,20 @@ iexpression to access the variable. You can then use this expression in the [**W
179179
To filter variables by their name or value, use the Alt/Opt + Ctrl/Cmd + F keyboard shortcut while the focus is on the
180180
**VARIABLES section**, and type a search term.
181181

182-
![Searching in VARIABLES section](./images/search-VARIABLES.png)
182+
![Searching in VARIABLES section](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/search-VARIABLES.png)
183183

184184
### WATCH section
185185

186186
Variables and expressions can also be evaluated and watched in the Run and Debug view's WATCH section.
187187

188-
![WATCH section](./images/WATCH-section.png)
188+
![WATCH section](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/WATCH-section.png)
189189

190190
### CALL STACK section
191191

192192
The **CALL STACK** sections shows objects that are currently on stack. Threads are shown for applications
193193
that use an RTOS. Each object is associated to its location or value, and type.
194194

195-
![CALL STACK section](./images/call-stack-section.png)
195+
![CALL STACK section](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/call-stack-section.png)
196196

197197
The window content is updated automatically whenever program execution stops.
198198

@@ -218,12 +218,12 @@ To set or unset a breakpoint, click on the editor margin or use **F9** on the cu
218218
- When a debugging session starts, breakpoints that can't be registered with the debugger change to a gray hollow
219219
circle. The same might happen if the source is edited while a debug session without live-edit support is running.
220220

221-
![Breakpoint in the edirot margin](./images/bkpt-in-editor-margin.png)
221+
![Breakpoint in the edirot margin](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/bkpt-in-editor-margin.png)
222222

223223
For more control of your breakpoints, use the Run and Debug view's **BREAKPOINTS section**. This section lists all
224224
breakpoints in your code and provides extra actions to manage them.
225225

226-
![BREAKPOINTS section](./images/breakpoints-section.png)
226+
![BREAKPOINTS section](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/breakpoints-section.png)
227227

228228
#### Breakpoint types
229229

@@ -248,7 +248,7 @@ To add a conditional breakpoint:
248248

249249
- Choose the type of condition you want to set (expression, hit count, or wait for breakpoint).
250250

251-
![Creating a conditional breakpoint](./images/conditional-bkpt.gif)
251+
![Creating a conditional breakpoint](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/conditional-bkpt.gif)
252252

253253
To add a condition to an existing breakpoint:
254254

@@ -269,7 +269,7 @@ be useful when diagnosing failure cases in code that happen only after a certain
269269
Triggered breakpoints can be set by right-clicking on the glyph margin, selecting **Add Triggered Breakpoint**, and
270270
then choosing which other breakpoint enables the breakpoint.
271271

272-
![Creating a triggered breakpoint](./images/triggered-bkpt.gif)
272+
![Creating a triggered breakpoint](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/triggered-bkpt.gif)
273273

274274
##### Inline breakpoints
275275

@@ -307,7 +307,7 @@ evaluated within curly braces ('{}').
307307
To add a logpoint, right-click in the editor left margin and select Add Logpoint, or use the
308308
**Debug: Add Logpoint...** command in the Command Palette (**Ctrl/Cmd + Shift + p**).
309309

310-
![Creating a logpoint](./images/create-logpoint.gif)
310+
![Creating a logpoint](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/create-logpoint.gif)
311311

312312
Just like regular breakpoints, logpoints can be enabled or disabled and can also be controlled by a condition
313313
and/or hit count.
@@ -316,7 +316,7 @@ and/or hit count.
316316

317317
The Eclipse CDT Cloud **Periperhal Inspector** is a standalone SVD Viewer extension.
318318

319-
![Peripheral Inspector](./images/peripheral-inspector.png)
319+
![Peripheral Inspector](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/peripheral-inspector.png)
320320

321321
For more information, refer to the
322322
[Peripheral Inspector GitHub repository](https://github.com/eclipse-cdt-cloud/vscode-peripheral-inspector).
@@ -326,7 +326,7 @@ For more information, refer to the
326326
The Eclipse CDT Cloud **Memory Inspector** provides a powerful and configurable memory viewer that works with
327327
debug adapters.
328328

329-
![Memory Inspector](./images/memory-inspector.png)
329+
![Memory Inspector](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/memory-inspector.png)
330330

331331
It features:
332332

@@ -362,7 +362,7 @@ To open the **Disassembly View**:
362362
- press **Ctrl/Cmd + Shift + p** and select "Open Disassembly View" or
363363
- Right-click an item in the [**CALL STACK section**](#call-stack-section) and select "Open Disassembly View"
364364

365-
![Disassembly View](./images/disassembly-view.png)
365+
![Disassembly View](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/disassembly-view.png)
366366

367367
### Debug Console
368368

@@ -384,7 +384,7 @@ closing of quotes, and other language features.
384384
The following example shows how to check the currently set breakpoints with the `> info break` command. Afterwards, the
385385
application is run with the `> continue` command.
386386

387-
![Entering GDB commands in the Debug Console REPL](./images/entering_gdb_commands.gif)
387+
![Entering GDB commands in the Debug Console REPL](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/entering_gdb_commands.gif)
388388

389389
## Extension Functionality
390390

@@ -554,7 +554,7 @@ Make sure to build your application ELF file with DWARF version 5 debug informat
554554

555555
When starting a debug session, you might see this error:
556556

557-
![Remote communication error](./images/remote_comms_err.png)
557+
![Remote communication error](https://github.com/Open-CMSIS-Pack/vscode-cmsis-debugger/raw/main/images/remote_comms_err.png)
558558

559559
**Possible reason**: A running instance of pyOCD
560560

0 commit comments

Comments
 (0)