mirror of
https://gitee.com/beecue/fastbee.git
synced 2025-12-19 17:35:54 +08:00
1.新增esp-idf设备端sdk
This commit is contained in:
23
sdk/ESP-IDF/esp_fastbee_aliyun/.vscode/c_cpp_properties.json
vendored
Normal file
23
sdk/ESP-IDF/esp_fastbee_aliyun/.vscode/c_cpp_properties.json
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"configurations": [
|
||||
{
|
||||
"name": "Win32",
|
||||
"includePath": [
|
||||
"${workspaceFolder}/**",
|
||||
"D:/soft/esp-idf/Espressif/frameworks/esp-idf-v4.4.7/components/**",
|
||||
"./esp-aliyun/**",
|
||||
],
|
||||
"defines": [
|
||||
"_DEBUG",
|
||||
"UNICODE",
|
||||
"_UNICODE"
|
||||
],
|
||||
"windowsSdkVersion": "10.0.22621.0",
|
||||
"compilerPath": "cl.exe",
|
||||
"cStandard": "c17",
|
||||
"cppStandard": "c++17",
|
||||
"intelliSenseMode": "windows-msvc-x64"
|
||||
}
|
||||
],
|
||||
"version": 4
|
||||
}
|
||||
35
sdk/ESP-IDF/esp_fastbee_aliyun/.vscode/launch.json
vendored
Normal file
35
sdk/ESP-IDF/esp_fastbee_aliyun/.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "ESP-IDF Debug: Launch",
|
||||
"type": "espidf",
|
||||
"request": "launch"
|
||||
},
|
||||
{
|
||||
"name": "GDB",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"MIMode": "gdb",
|
||||
"miDebuggerPath": "${command:espIdf.getXtensaGdb}",
|
||||
"program": "${workspaceFolder}/build/${command:espIdf.getProjectName}.elf",
|
||||
"windows": {
|
||||
"program": "${workspaceFolder}\\build\\${command:espIdf.getProjectName}.elf"
|
||||
},
|
||||
"cwd": "${workspaceFolder}",
|
||||
"environment": [{ "name": "PATH", "value": "${config:idf.customExtraPaths}" }],
|
||||
"setupCommands": [
|
||||
{ "text": "set remotetimeout 100" },
|
||||
{ "text": "target extended-remote :3333" },
|
||||
{ "text": "set remote hardware-watchpoint-limit 2"},
|
||||
{ "text": "mon reset halt" },
|
||||
{ "text": "thb app_main" },
|
||||
{ "text": "flushregs" }
|
||||
],
|
||||
"externalConsole": false,
|
||||
"logging": {
|
||||
"engineLogging": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
19
sdk/ESP-IDF/esp_fastbee_aliyun/.vscode/settings.json
vendored
Normal file
19
sdk/ESP-IDF/esp_fastbee_aliyun/.vscode/settings.json
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"idf.portWin": "COM6",
|
||||
"idf.adapterTargetName": "esp32s3",
|
||||
"idf.openOcdConfigs": [
|
||||
"board/esp32s3-builtin.cfg"
|
||||
],
|
||||
"idf.flashType": "UART",
|
||||
"files.associations": {
|
||||
"infra_config.h": "c",
|
||||
"cjson.h": "c",
|
||||
"dm_wrapper.h": "c",
|
||||
"infra_defs.h": "c",
|
||||
"freertos.h": "c",
|
||||
"stddef.h": "c",
|
||||
"string.h": "c",
|
||||
"esp_log.h": "c",
|
||||
"mqtt_client.h": "c"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user