Skip to content

Commit 85bbb72

Browse files
author
smtc-bot
committed
Release v1.0.0
1 parent 85b700d commit 85bbb72

File tree

325 files changed

+42323
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

325 files changed

+42323
-0
lines changed

.vscode/c_cpp_properties.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Linux",
5+
"includePath": [
6+
"${workspaceFolder:USP for Zephyr}/**",
7+
"${workspaceFolder:Zephyr Workspace (all files)}/modules/**",
8+
"${workspaceFolder:Zephyr Workspace (all files)}/zephyr/**"
9+
]
10+
}
11+
],
12+
"version": 4
13+
}

.vscode/launch.json

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Xiao nRF54 with PyOCD",
6+
"cwd": "${workspaceFolder}",
7+
"executable": "${workspaceFolder:Zephyr Workspace (all files)}/build/zephyr/zephyr.elf",
8+
"request": "launch",
9+
"type": "cortex-debug",
10+
"runToEntryPoint": "main",
11+
"servertype": "pyocd",
12+
"svdFile": "nrf54l15.svd", //For CMSIS peripherals view
13+
"device": "nrf54l",
14+
"targetId": "nrf54l",
15+
"postRestartCommands": [
16+
"monitor reset halt"
17+
],
18+
"preLaunchTask": "West Build",
19+
"toolchainPrefix": "arm-zephyr-eabi",
20+
"windows": {
21+
"gdbPath": "${config:zephyr.gdb_windows}"
22+
//"pyocdPath": "${config:zephyr.pyocd_windows}"
23+
},
24+
"linux": {
25+
"gdbPath": "${config:zephyr.gdb_linux}"
26+
//"pyocdPath": "${config:zephyr.pyocd_linux}"
27+
},
28+
"interface": "swd",
29+
"showDevDebugOutput": "raw"
30+
},
31+
{
32+
"name": "STM32L476RG with openocd",
33+
"cwd": "${workspaceFolder}",
34+
"executable": "${workspaceFolder:Zephyr Workspace (all files)}/build/zephyr/zephyr.elf",
35+
"request": "launch",
36+
"type": "cortex-debug",
37+
"runToEntryPoint": "main",
38+
"showDevDebugOutput": "none",
39+
"servertype": "openocd",
40+
"configFiles": [
41+
"interface/stlink.cfg",
42+
"target/stm32l4x.cfg"
43+
],
44+
// "openOCDLaunchCommands": [
45+
// "hla_serial 0671FF495648807567102644"
46+
// ],
47+
//"preLaunchTask": "West Build",
48+
"windows": {
49+
"gdbPath": "${config:zephyr.gdb_windows}"
50+
},
51+
"linux": {
52+
"gdbPath": "${config:zephyr.gdb_linux}"
53+
}
54+
},
55+
{
56+
"name": "nRF52840 DK with JLink",
57+
"device": "nRF52840_xxAA",
58+
"cwd": "${workspaceFolder}",
59+
"executable": "${workspaceFolder:Zephyr Workspace (all files)}/build/zephyr/zephyr.elf",
60+
"request": "launch",
61+
"type": "cortex-debug",
62+
"runToEntryPoint": "main",
63+
"servertype": "jlink",
64+
//"preLaunchTask": "West Build",
65+
"windows": {
66+
"gdbPath": "${config:zephyr.gdb_windows}"
67+
},
68+
"linux": {
69+
"gdbPath": "${config:zephyr.gdb_linux}"
70+
}
71+
},
72+
{
73+
"name": "nRF54l15 DK with JLink",
74+
"cwd": "${workspaceFolder}",
75+
"executable": "${workspaceFolder:Zephyr Workspace (all files)}/build/zephyr/zephyr.elf",
76+
"request": "launch",
77+
"type": "cortex-debug",
78+
"runToEntryPoint": "main",
79+
"servertype": "jlink",
80+
"device": "nRF54L15_M33",
81+
//"preLaunchTask": "West Build",
82+
"windows": {
83+
"gdbPath": "${config:zephyr.gdb_windows}"
84+
},
85+
"linux": {
86+
"gdbPath": "${config:zephyr.gdb_linux}"
87+
},
88+
"interface": "swd",
89+
"showDevDebugOutput": "raw"
90+
}
91+
]
92+
}

.vscode/settings.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"zephyr.west_linux": "${workspaceFolder:Zephyr Workspace (all files)}/../zephyrproject/.venv/bin/west",
3+
"zephyr.west_windows": "${workspaceFolder:Zephyr Workspace (all files)}\\..\\zephyrproject\\.venv\\Scripts\\west.exe",
4+
"zephyr.west_osx": "${workspaceFolder:Zephyr Workspace (all files)}/../zephyrproject/.venv/bin/west",
5+
"zephyr.gdb_linux": "${userHome}/zephyr-sdk-0.17.0/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb",
6+
"zephyr.gdb_windows": "${userHome}\\zephyr-sdk-0.17.0\\arm-zephyr-eabi\\bin\\arm-zephyr-eabi-gdb.exe",
7+
"zephyr.gdb_osx": "${userHome}/zephyr-sdk-0.17.0/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb",
8+
"zephyr.pyocd_linux": "${workspaceFolder:Zephyr Workspace (all files)}/../zephyrproject/.venv/bin/pyocd",
9+
"zephyr.pyocd_windows": "${workspaceFolder:Zephyr Workspace (all files)}\\..\\zephyrproject\\.venv\\Scripts\\pyocd.exe",
10+
"zephyr.pyocd_osx": "${workspaceFolder:Zephyr Workspace (all files)}/../zephyrproject/.venv/bin/pyocd",
11+
"C_Cpp.default.includePath": [
12+
"${workspaceFolder}/**",
13+
"${workspaceFolder}/../modules/**",
14+
"${workspaceFolder}/../zephyr/**"
15+
],
16+
"files.exclude": {
17+
"**/build": true
18+
},
19+
"clangd.arguments": [
20+
"--background-index=true"
21+
]
22+
}

0 commit comments

Comments
 (0)