From e14a46c63eba80ade2c67c13fb8feb97bf27c7a5 Mon Sep 17 00:00:00 2001 From: David Madison Date: Mon, 27 Mar 2017 17:37:50 -0400 Subject: [PATCH] Duplicated loop function use comment It takes slightly more space to duplicate the comment vs using an obtuse reference to find another comment buried in the code. --- Arduino/LEDstream_FastLED/LEDstream_FastLED.ino | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino b/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino index 37cd7e5..0fecce1 100644 --- a/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino +++ b/Arduino/LEDstream_FastLED/LEDstream_FastLED.ino @@ -196,5 +196,6 @@ void adalight(){ void loop() { - // Not used. See note in adalight() function. + // loop() is avoided as even that small bit of function overhead + // has a measurable impact on this code's overall throughput. }