-
-
Notifications
You must be signed in to change notification settings - Fork 222
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
D1 mini Pro crashes after executing setup() #281
Comments
After some further testing it seems the issue was introduced in platform version 3.2.0. Using 3.1.0 and below works fine |
Same problem here. D1 mini pro ESP8266. I have not change anything in the initial yaml:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using PlatformIO to compile for the WEMOS D1 mini Pro will cause a crash after reaching end of setup(). The following sketch works fine in Arduino IDE but not in PlatformIO CLion:
Expected behaviour (this happens in Arduino IDE):
Prints "Setup started" and "Setup completed" to Serial monitor then blinks builtin led
Actual behaviour:
Prints "Setup started" and "Setup completed" to Serial monitor then resets with cause 2
platformio.ini:
After adding
build_type = debug
andmonitor_filters = esp8266_exception_decoder
I have gotten the following from Serial monitor (it gets repeated infinitely):According to some googling this means the heap is full and the device ran out of memory, but I don't see how is that possible with a simple blink sketch and why does it work fine in Arduino IDE
The text was updated successfully, but these errors were encountered: