ivanseidel / LinkedList

🔗 A fully implemented LinkedList made to work with general Microcontrollers and Arduino projects
MIT License
350 stars 118 forks source link

Including LinkedList.h breaks Nano 33 IoT setup method #52

Open Tetrahedran opened 3 years ago

Tetrahedran commented 3 years ago

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

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); }

per1234 commented 2 years ago

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

Tetrahedran commented 2 years ago

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.