Skip to content

Commit

Permalink
Fix compilation on Arduino 3 (#19447)
Browse files Browse the repository at this point in the history
* Fix compilation on Arduino 3

* Fix compilation
  • Loading branch information
s-hadinger authored Sep 3, 2023
1 parent 4cb8b98 commit a781ba3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/libesp32/berry_tasmota/src/be_mdns_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
3 changes: 3 additions & 0 deletions tasmota/tasmota_support/support_wifi.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a781ba3

Please # to comment.