Update ESP8266.h to increase size of ssid & phrase to Wifi standards of 32 & 64

Fork of ESP8266Interface by ESP8266

ESP8266Interface.cpp

Committer:
br549
Date:
2016-04-02
Revision:
49:e3d1b20ea0b7
Parent:
28:91e65e22e63a

File content as of revision 49:e3d1b20ea0b7:

#include "ESP8266Interface.h"

ESP8266Interface::ESP8266Interface( PinName tx, PinName rx, PinName reset,
                                const char * ssid, const char * phrase, uint32_t baud ) :
    ESP8266(tx, rx, reset, ssid, phrase, baud )
{
}

int ESP8266Interface::init()
{
    ESP8266::reset();
    return 0;
}

bool ESP8266Interface::connect()
{
    return ESP8266::connect();
}

int ESP8266Interface::disconnect()
{
    return ESP8266::disconnect();
}

char * ESP8266Interface::getIPAddress()
{
    return ESP8266::getIPAddress();
}