Your new topic does not fit any of the above??? Check first. Then post here. Thanks.

Moderator: igrr

User avatar
By hhoef
#35255 Hello,

I like to use the sscanf function in my code. It compiles fine when I select a Arduino board, but I get a 'undefined reference to `sscanf' when I use the esp8266...

The code:
Code: Select allunsigned long value = 0L;

void setup() {
  sscanf("hello42", "%lx", &value);
}

void loop () {}


Any idea how to solve this?

BR,
Hubert