第一次提交:完成了网关的单路485数据采集,还有以太网链接和MQTT配置,实现数据上报和命令下发,差一个断网储存

This commit is contained in:
Wang Beihong
2026-02-01 18:31:06 +08:00
commit b284cb4953
35 changed files with 4338 additions and 0 deletions

20
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
"C_Cpp.intelliSenseEngine": "default",
"idf.espIdfPath": "/home/beihong/esp/v5.5.2/esp-idf",
"idf.pythonInstallPath": "/usr/bin/python3",
"idf.openOcdConfigs": [
"board/esp32s3-builtin.cfg"
],
"idf.port": "/dev/ttyACM0",
"idf.toolsPath": "/home/beihong/esp/v5.5.2/esp-idf/tools",
"idf.customExtraVars": {
"IDF_TARGET": "esp32s3"
},
"clangd.path": "/home/beihong/esp/v5.5.2/esp-idf/tools/tools/esp-clang/esp-19.1.2_20250312/esp-clang/bin/clangd",
"clangd.arguments": [
"--background-index",
"--query-driver=**",
"--compile-commands-dir=/home/beihong/esp_projects/Distributed Collector Gateway/build"
],
"idf.flashType": "UART"
}