123456789101112131415161718192021222324252627282930313233 |
-
- #pragma once
- #include "esp_pthread.h"
- #ifndef SQUEEZELITE_ESP32_RELEASE_URL
- #define SQUEEZELITE_ESP32_RELEASE_URL "https://github.com/sle118/squeezelite-esp32/releases"
- #endif
- extern void 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;
|