esp_stubs.c 305 B

123456789101112131415161718
  1. /*
  2. * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Unlicense OR CC0-1.0
  5. */
  6. #include <stdlib.h>
  7. #include "esp_err.h"
  8. #include "esp_log.h"
  9. esp_err_t esp_netif_init(void)
  10. {
  11. return ESP_OK;
  12. }
  13. esp_err_t example_connect(void)
  14. {
  15. return ESP_OK;
  16. }