mirror of
https://github.com/esp8266/Arduino.git
synced 2025-08-01 03:47:23 +03:00
Fix compilation errors on examples and adapt API to new Ethernet functions
This commit is contained in:
@ -3,6 +3,7 @@
|
||||
|
||||
#include <inttypes.h>
|
||||
#include "wifi_spi.h"
|
||||
#include "IPAddress.h"
|
||||
|
||||
#define KEY_IDX_LEN 1
|
||||
#define WL_DELAY_START_CONNECTION 5000
|
||||
@ -40,11 +41,11 @@ public:
|
||||
|
||||
static uint8_t* getMacAddress();
|
||||
|
||||
static void getIpAddress(uint8_t *ip);
|
||||
static void getIpAddress(IPAddress& ip);
|
||||
|
||||
static void getSubnetMask(uint8_t *ip);
|
||||
static void getSubnetMask(IPAddress& ip);
|
||||
|
||||
static void getGatewayIP(uint8_t *ip);
|
||||
static void getGatewayIP(IPAddress& ip);
|
||||
|
||||
static char* getCurrentSSID();
|
||||
|
||||
|
Reference in New Issue
Block a user