Skip to content

Instantly share code, notes, and snippets.

@bblanchon
Created November 30, 2017 09:01
Show Gist options
  • Save bblanchon/fab3d40dad004668fb2bef965d708991 to your computer and use it in GitHub Desktop.
Save bblanchon/fab3d40dad004668fb2bef965d708991 to your computer and use it in GitHub Desktop.
void setup() {
Serial.begin(115200);
while (!Serial);
Serial.println("-------------------------------------");
recurse();
}
void recurse()
{
char buffer[4096];
Serial.println((long)&buffer);
recurse();
}
void loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment