Skip to content

Commit e9248b2

Browse files
committed
Updated documentation
1 parent f7643a4 commit e9248b2

File tree

6 files changed

+54
-8
lines changed

6 files changed

+54
-8
lines changed

.devcontainer/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ The dev enviroment comes with some scripts to make this easier, They are located
3333

3434
There are also VSCode tasks provided should you desire to use those.
3535

36-
The task BuildInit will update submodules and configure for openocd
36+
The task "update submodules" will update the git submodules
3737

3838

3939

4040
### Build
4141

4242
You can use the build.sh script located in /opt/
4343

44-
There will also eventually be a Build task. - Not written yet
44+
CMake is also configured and controlls for the CMake plugin are available in VSCode
4545

4646

4747

.vscode/cmake-variants.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,14 @@
4747
"short": "No DFU",
4848
"long": "Do not build DFU",
4949
"settings": {
50-
"BUILD_DFU":0
50+
"BUILD_DFU":"0"
5151
}
5252
},
5353
"yes": {
5454
"short": "Build DFU",
5555
"long": "Build DFU",
5656
"settings": {
57-
"BUILD_DFU":1
57+
"BUILD_DFU":"1"
5858
}
5959
}
6060
}

.vscode/extensions.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["ms-vscode.cpptools","ms-vscode.cmake-tools","marus25.cortex-debug"]
3+
}

.vscode/launch.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
{
55
"name": "Debug - Openocd docker Remote",
66
"type":"cortex-debug",
7-
"cortex-debug.armToolchainPath":"${env:COMPILER_DIR}/bin",
7+
"cortex-debug.armToolchainPath":"${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin",
88
"cwd": "${workspaceRoot}",
99
"executable": "${command:cmake.launchTargetPath}",
1010
"request": "launch",
1111
"servertype": "external",
1212
// This may need to be arm-none-eabi-gdb depending on your system
13-
"gdbPath" : "${env:COMPILER_DIR}/bin/arm-none-eabi-gdb",
13+
"gdbPath" : "${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin/arm-none-eabi-gdb",
1414
// Connect to an already running OpenOCD instance
1515
"gdbTarget": "host.docker.internal:3333",
1616
"svdFile": "${workspaceRoot}/nrf52.svd",
@@ -24,13 +24,13 @@
2424
{
2525
"name": "Debug - Openocd Local",
2626
"type":"cortex-debug",
27-
"cortex-debug.armToolchainPath":"${env:COMPILER_DIR}/bin",
27+
"cortex-debug.armToolchainPath":"${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin",
2828
"cwd": "${workspaceRoot}",
2929
"executable": "${command:cmake.launchTargetPath}",
3030
"request": "launch",
3131
"servertype": "openocd",
3232
// This may need to be arm-none-eabi-gdb depending on your system
33-
"gdbPath" : "${env:COMPILER_DIR}/bin/arm-none-eabi-gdb",
33+
"gdbPath" : "${env:ARM_NONE_EABI_TOOLCHAIN_PATH}/bin/arm-none-eabi-gdb",
3434
// Connect to an already running OpenOCD instance
3535
"gdbTarget": "localhost:3333",
3636
"svdFile": "${workspaceRoot}/nrf52.svd",

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ As of now, here is the list of achievements of this project:
8787
- [Build the project](doc/buildAndProgram.md)
8888
- [Flash the firmware using OpenOCD and STLinkV2](doc/openOCD.md)
8989
- [Build the project with Docker](doc/buildWithDocker.md)
90+
- [Build the project with VSCode](doc/buildWithVScode.md)
9091
- [Bootloader, OTA and DFU](./bootloader/README.md)
9192
- [Stub using NRF52-DK](./doc/PinetimeStubWithNrf52DK.md)
9293
- Logging with JLink RTT.

doc/buildWithVScode.md

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Build and Develop the project using VS Code
2+
3+
The .VSCode folder contains configuration files for developing InfiniTime with VS Code. Effort was made to have these rely on Environment variables instead of hardcoded paths.
4+
5+
## Environment Setup
6+
7+
To support as many setups as possible the VS Code configuration files expect there to be certain environment variables to be set.
8+
9+
Variable | Description | Example
10+
----------|-------------|--------
11+
**ARM_NONE_EABI_TOOLCHAIN_PATH**|path to the toolchain directory|`export ARM_NONE_EABI_TOOLCHAIN_PATH=/opt/gcc-arm-none-eabi-9-2020-q2-update`
12+
**NRF5_SDK_PATH**|path to the NRF52 SDK|`export NRF5_SDK_PATH=/opt/nRF5_SDK_15.3.0_59ac345`
13+
14+
## VS Code Extensions
15+
16+
We leverage a few VS Code extensions for ease of development.
17+
18+
#### Required Extensions
19+
20+
- [C/C++](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools) - C/C++ IntelliSense, debugging, and code browsing.
21+
- [CMake Tools](https://marketplace.visualstudio.com/items?itemName=ms-vscode.cmake-tools) - Extended CMake support in Visual Studio Code
22+
23+
#### Optional Extensions
24+
25+
[Cortex-Debug](https://marketplace.visualstudio.com/items?itemName=marus25.cortex-debug) - ARM Cortex-M GDB Debugger support for VSCode
26+
27+
Cortex-Debug is only required for interactive debugging using VS Codes built in GDB support.
28+
29+
30+
31+
## VS Code/Docker DevContainer
32+
33+
The .devcontainer folder contains the configuration and scripts for using a Docker dev container for building InfiniTime
34+
35+
Using the [Remote-Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) extension is recommended. It will handle configuring the Docker virtual machine and setting everything up.
36+
37+
More documentation is available in the [readme in .devcontainer](.devcontainer/readme.md)
38+
39+
40+
41+
42+

0 commit comments

Comments
 (0)