-->
Page 2 of 2

Re: Running CPP code using ESP8266_RTOS_SDK

PostPosted: Thu Sep 15, 2022 4:35 pm
by jbsimon000
Anyone have any ideas ? is anyone successfully using ESP8266_RTOS_SDK with c++ ?

Re: Running CPP code using ESP8266_RTOS_SDK

PostPosted: Sat Jun 17, 2023 7:54 am
by mgerczuk
I guess I'm late, but I had the same problem and found a solution.
The crash happens in the constructor of the global static object in <iostream>
Code: Select allstatic ios_base::Init __ioinit;

If you only include <ostream> and <istream> it works fine.