Skip to main content
Fixed code alignment, syntax highlighting, capitalization.
Source Link
VE7JRO
  • 2.5k
  • 19
  • 28
  • 31

I am new to the arduinoArduino world and it seems that this simple problem is keeping me at the start line.

  • I use the Generic ESP8266 Module as Board
  • In my sketch I just write  :

[CODE]

#include < ESP8266WiFi.h >

void setup(){}

void loop(){}

[/CODE]

#include < ESP8266WiFi.h >
void setup(){}
void loop(){}

The ERROR is :

BearSSLHelpers.h:148:34: error: 'virtual const unsigned char* BearSSL::HashSHA256::oid()' marked override, but does not override

 virtual const unsigned char *oid() override;

                              ^
 virtual const unsigned char *oid() override;

                              ^

How am I going to solve that? Any help is appreciated.

I am new to the arduino world and it seems that this simple problem is keeping me at the start line.

  • I use the Generic ESP8266 Module as Board
  • In my sketch I just write  :

[CODE]

#include < ESP8266WiFi.h >

void setup(){}

void loop(){}

[/CODE]

The ERROR is :

BearSSLHelpers.h:148:34: error: 'virtual const unsigned char* BearSSL::HashSHA256::oid()' marked override, but does not override

 virtual const unsigned char *oid() override;

                              ^

How am I going to solve that? Any help is appreciated.

I am new to the Arduino world and it seems that this simple problem is keeping me at the start line.

  • I use the Generic ESP8266 Module as Board
  • In my sketch I just write:
#include < ESP8266WiFi.h >
void setup(){}
void loop(){}

The ERROR is :

BearSSLHelpers.h:148:34: error: 'virtual const unsigned char* BearSSL::HashSHA256::oid()' marked override, but does not override

 virtual const unsigned char *oid() override;

                              ^

How am I going to solve that? Any help is appreciated.

edited title
Link

#include <ESP8166WiFi<ESP8266WiFi.h> Error with WiFiClientSecureBearSSL.h

Source Link

#include <ESP8166WiFi.h> Error with WiFiClientSecureBearSSL.h

I am new to the arduino world and it seems that this simple problem is keeping me at the start line.

  • I use the Generic ESP8266 Module as Board
  • In my sketch I just write :

[CODE]

#include < ESP8266WiFi.h >

void setup(){}

void loop(){}

[/CODE]

The ERROR is :

BearSSLHelpers.h:148:34: error: 'virtual const unsigned char* BearSSL::HashSHA256::oid()' marked override, but does not override

 virtual const unsigned char *oid() override;

                              ^

How am I going to solve that? Any help is appreciated.