1234567891011121314151617181920212223242526272829303132333435 |
-
- #pragma once
- #include "esp_pthread.h"
- #include "esp_log.h"
- #ifndef SQUEEZELITE_ESP32_RELEASE_URL
- #define SQUEEZELITE_ESP32_RELEASE_URL "https://github.com/sle118/squeezelite-esp32/releases"
- #endif
- extern bool is_recovery_running;
- extern esp_err_t run_command(char * line);
- extern bool wait_for_wifi();
- extern void console_start();
- extern pthread_cond_t wifi_connect_suspend_cond;
- extern pthread_t wifi_connect_suspend_mutex;
|