MCPcopy Create free account
hub / github.com/FastLED/FastLED / testmul8

Function testmul8

src/lib8tion.cpp.hpp:166–183  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

164
165
166void testmul8()
167{
168 delay(5000);
169 byte r, c;
170
171 Serial.println("mul8:");
172 for( r = 0; r <= 20; r += 1) {
173 Serial.print(r); Serial.print(" : ");
174 for( c = 0; c <= 20; c += 1) {
175 byte t;
176 t = fl::mul8( r, c);
177 Serial.print(t); Serial.print(' ');
178 }
179 Serial.println(' ');
180 }
181 Serial.println("done.");
182 for(;;){};
183}
184
185
186void testscale8()

Callers

nothing calls this directly

Calls 3

delayFunction · 0.70
printlnMethod · 0.45
printMethod · 0.45

Tested by

no test coverage detected