2022-11-08 16:31:52 +05:30
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Unlicense OR CC0-1.0
|
|
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "esp_err.h"
|
|
|
|
#include "esp_log.h"
|
2022-11-16 17:31:07 +05:30
|
|
|
#include "esp_event.h"
|
2022-11-08 16:31:52 +05:30
|
|
|
|
|
|
|
extern void app_main(void);
|
|
|
|
|
|
|
|
esp_err_t esp_netif_init(void)
|
|
|
|
{
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
2023-01-12 10:09:25 +05:30
|
|
|
esp_err_t example_connect(void)
|
2022-11-08 16:31:52 +05:30
|
|
|
{
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
2023-02-17 11:39:54 +05:30
|
|
|
int main(void)
|
2022-11-08 16:31:52 +05:30
|
|
|
{
|
|
|
|
app_main();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|