kopia lustrzana https://github.com/espressif/esp-idf
19 wiersze
305 B
C
19 wiersze
305 B
C
/*
|
|
* 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"
|
|
|
|
esp_err_t esp_netif_init(void)
|
|
{
|
|
return ESP_OK;
|
|
}
|
|
|
|
esp_err_t example_connect(void)
|
|
{
|
|
return ESP_OK;
|
|
}
|