Initial commit - sync AliceRC to Gitea

This commit is contained in:
2026-08-03 15:54:25 +08:00
commit 493b7d81d7
1510 changed files with 185319 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
/**
* @file main.c
* @brief AliceRC ESP32/ESP32S3 遥控器主程序入口
*/
#include <stdio.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_log.h"
#include "app_main.h"
static const char *TAG = "AliceRC";
void app_main(void)
{
ESP_LOGI(TAG, "AliceRC Transmitter v1.0 starting...");
// Initialize all subsystems
app_init();
// Main loop runs in app_main_task
while (1) {
vTaskDelay(pdMS_TO_TICKS(1000));
}
}