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();
|
||
|
|
}
|