mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-22 18:26:30 +00:00
Fix compilation on Arduino 3 (#19447)
* Fix compilation on Arduino 3 * Fix compilation
This commit is contained in:
parent
4cb8b987a4
commit
a781ba3fc2
@ -20,11 +20,11 @@ BE_FUNC_CTYPE_DECLARE(m_mdns_stop, "", "")
|
||||
extern void m_mdns_set_hostname(struct bvm *vm, const char * hostname);
|
||||
BE_FUNC_CTYPE_DECLARE(m_mdns_set_hostname, "", "@s")
|
||||
|
||||
extern int32_t m_mdns_add_service(struct bvm *vm);
|
||||
extern int32_t m_mdns_remove_service(struct bvm *vm);
|
||||
extern int32_t m_dns_add_subtype(struct bvm *vm);
|
||||
extern int32_t m_dns_add_hostname(struct bvm *vm);
|
||||
extern int32_t m_dns_find_service(struct bvm *vm);
|
||||
extern int m_mdns_add_service(struct bvm *vm);
|
||||
extern int m_mdns_remove_service(struct bvm *vm);
|
||||
extern int m_dns_add_subtype(struct bvm *vm);
|
||||
extern int m_dns_add_hostname(struct bvm *vm);
|
||||
extern int m_dns_find_service(struct bvm *vm);
|
||||
|
||||
/* @const_object_info_begin
|
||||
module mdns (scope: global) {
|
||||
|
@ -42,6 +42,9 @@ const uint8_t WIFI_RETRY_OFFSET_SEC = WIFI_RETRY_SECONDS; // seconds
|
||||
|
||||
#include <ESP8266WiFi.h> // Wifi, MQTT, Ota, WifiManager
|
||||
#include "lwip/dns.h"
|
||||
#if ESP_IDF_VERSION_MAJOR >= 5
|
||||
#include "esp_netif.h"
|
||||
#endif
|
||||
|
||||
int WifiGetRssiAsQuality(int rssi) {
|
||||
int quality = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user