Skip to content

Commit

Permalink
add configuring vscode section
Browse files Browse the repository at this point in the history
  • Loading branch information
yconst committed Sep 14, 2023
1 parent 852193e commit 4dbf9b7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions docs/develop/guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,23 @@ Our development environment for Tinymovr utilizes VSCode and is designed with cr

We take great pride in creating this in-house, cross-platform development solution, as an alternative to the official Windows-only solution, providing enhanced flexibility and simplifiyng the process of developing for Tinymovr across multiple platforms.

Configuring
***********

You'll need to configure the path to the JLink debug server in `.vscode/launch.json`. The configuration blocks look like this:

.. code-block:: javascript
"windows": {
// Update the path below as necessary
"serverpath": "C:\\Program Files\\SEGGER\\JLink\\JLinkGDBServerCL.exe"
},
"linux": {
// Update the path below as necessary
"serverpath": "/opt/SEGGER/JLink/JLinkGDBServer"
}
There are several instances of such blocks in the file that need to be updated.

Building
********
Expand Down

0 comments on commit 4dbf9b7

Please sign in to comment.