Skip to content

Commit b5aafa2

Browse files
committed
add source code
1 parent 761d7d7 commit b5aafa2

28 files changed

+3620
-7
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@
1919
*.dep
2020
*.iex
2121
*.htm
22-
*.map
22+
*.map
23+
.pio
Binary file not shown.

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,2 @@
1-
1.DAPlinkC8T6 V2.0
2-
![1](images/DAPLink_01.jpg)
3-
![2](images/DAPLink_02.jpg)
4-
![3](images/DAPLink_03.jpg)
5-
![4](images/DAPLink_04.jpg)
6-
![5](images/DAPLink_05.jpg)
1+
1.RY-DOG V2.0
2+

source/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.pio

source/.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/.idea/editor.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/.idea/misc.xml

Lines changed: 17 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/.vscode/c_cpp_properties.json

Lines changed: 540 additions & 0 deletions
Large diffs are not rendered by default.

source/.vscode/extensions.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
// See http://go.microsoft.com/fwlink/?LinkId=827846
3+
// for the documentation about the extensions.json format
4+
"recommendations": [
5+
"platformio.platformio-ide"
6+
],
7+
"unwantedRecommendations": [
8+
"ms-vscode.cpptools-extension-pack"
9+
]
10+
}

source/.vscode/launch.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
// AUTOMATICALLY GENERATED FILE. PLEASE DO NOT MODIFY IT MANUALLY
2+
//
3+
// PlatformIO Debugging Solution
4+
//
5+
// Documentation: https://docs.platformio.org/en/latest/plus/debugging.html
6+
// Configuration: https://docs.platformio.org/en/latest/projectconf/sections/env/options/debug/index.html
7+
8+
{
9+
"version": "0.2.0",
10+
"configurations": [
11+
{
12+
"type": "platformio-debug",
13+
"request": "launch",
14+
"name": "PIO Debug",
15+
"executable": "E:/ESP32/cobot/cobot/.pio/build/esp32-s3-devkitc-1/firmware.elf",
16+
"projectEnvName": "esp32-s3-devkitc-1",
17+
"toolchainBinDir": "C:/Users/Hugh/.platformio/packages/toolchain-xtensa-esp32s3/bin",
18+
"internalConsoleOptions": "openOnSessionStart",
19+
"preLaunchTask": {
20+
"type": "PlatformIO",
21+
"task": "Pre-Debug"
22+
}
23+
},
24+
{
25+
"type": "platformio-debug",
26+
"request": "launch",
27+
"name": "PIO Debug (skip Pre-Debug)",
28+
"executable": "E:/ESP32/cobot/cobot/.pio/build/esp32-s3-devkitc-1/firmware.elf",
29+
"projectEnvName": "esp32-s3-devkitc-1",
30+
"toolchainBinDir": "C:/Users/Hugh/.platformio/packages/toolchain-xtensa-esp32s3/bin",
31+
"internalConsoleOptions": "openOnSessionStart"
32+
},
33+
{
34+
"type": "platformio-debug",
35+
"request": "launch",
36+
"name": "PIO Debug (without uploading)",
37+
"executable": "E:/ESP32/cobot/cobot/.pio/build/esp32-s3-devkitc-1/firmware.elf",
38+
"projectEnvName": "esp32-s3-devkitc-1",
39+
"toolchainBinDir": "C:/Users/Hugh/.platformio/packages/toolchain-xtensa-esp32s3/bin",
40+
"internalConsoleOptions": "openOnSessionStart",
41+
"loadMode": "manual"
42+
}
43+
]
44+
}

0 commit comments

Comments
 (0)