1
0
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:
mlafauci
2011-05-18 15:37:29 +02:00
parent 4f7e2f1201
commit 0b8d3f6421
16 changed files with 205 additions and 42 deletions

View File

@ -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();