ivanseidel / ivanseidel/LinkedList

Including LinkedList.h breaks Nano 33 IoT setup method

Open
#52 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
C++
Stars
364
Forks
117
PR merge metrics
No merged PRs in 30d

Description

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

Contributor guide

No contributing guide indexed for this repository

Research direction

Start by reproducing the minimal sketch with LinkedList.h on an Arduino Nano 33 IoT and compare it with the sketch without the include. Inspect the library's LinkedList.h and the Arduino build/runtime behavior; done means setup completes and the built-in LED blinks as shown.

Written by the indexing model from the issue text.

Assessment

Tech stack
arduino, cpp
Domain
embedded-iot
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.