fix(nginx): 调整企业微信回调代理路径 feat(gateway): 添加企业微信消息处理功能 docs: 更新项目规划文档和企业微信配置详情 refactor(XCamera): 重构LED检测和图像处理逻辑 test: 添加ONVIF抓图测试功能
12 lines
217 B
C
12 lines
217 B
C
#include <stdio.h>
|
|
#include "esp_log.h"
|
|
|
|
static const char* TAG = "RustApp";
|
|
|
|
extern void rust_app_main();
|
|
|
|
void rust_app_wrapper_init() {
|
|
ESP_LOGI(TAG, "Initializing Rust application...");
|
|
rust_app_main();
|
|
}
|