LinkedList icon indicating copy to clipboard operation
LinkedList copied to clipboard

Including LinkedList.h breaks Nano 33 IoT setup method

Open Tetrahedran opened this issue 4 years ago • 2 comments

I wrote a simple sketch that essentially lets the buildin LED blink through the loop method. At the moment I include LinkedList.h evering breaks and the Arduino does not exit setup-method (visible via the not flashing LED). My test code:

#include<LinkedList.h>

void setup() { // put your setup code here, to run once: pinMode(LED_BUILTIN, OUTPUT);
}

void loop() { // put your main code here, to run repeatedly: digitalWrite(LED_BUILTIN, LOW); delay(1000); digitalWrite(LED_BUILTIN, HIGH); delay(1000); }

Tetrahedran avatar Sep 21 '21 12:09 Tetrahedran

This may have been fixed by https://github.com/ivanseidel/LinkedList/pull/48

per1234 avatar Mar 10 '22 06:03 per1234

Sadly not. I downloaded version 1.3.3 from Github, installed it according to the instructions in my lib folder, restarted the Arduino IDE and uploaded the same sketch but including LinkedList.h still breaks everything.

Tetrahedran avatar Mar 10 '22 09:03 Tetrahedran