28 lines
824 B
C
28 lines
824 B
C
#include "esp_hosted_fg.h"
|
|
#include <esp_log.h>
|
|
#include "esp_wifi.h"
|
|
#include "esp_event.h"
|
|
#include "lwip/netif.h"
|
|
|
|
static const char *TAG = "ESP_HOSTED_FG";
|
|
|
|
esp_err_t esp_hosted_fg_init(void) {
|
|
ESP_LOGI(TAG, "Initializing ESP-Hosted-FG component");
|
|
// This is a mock implementation.
|
|
// In a real scenario, this would initialize communication
|
|
// with the ESP32-C6.
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t esp_hosted_fg_wifi_ap_start(void) {
|
|
ESP_LOGI(TAG, "Starting Wi-Fi AP using ESP-Hosted-FG");
|
|
|
|
// This is a mock implementation.
|
|
// A real implementation would configure and start the AP on the ESP32-C6.
|
|
|
|
// Since we can't control the C6, we'll just log and return success.
|
|
ESP_LOGW(TAG, "Mock AP start. No actual AP will be created.");
|
|
|
|
return ESP_OK;
|
|
}
|