Commit 862746be authored by Lucas Russo's avatar Lucas Russo

examples/leds.c: fix LEDS value as API changed

This is related to commits a0f3f992 and 9d80fdf5
parent a776da42
......@@ -109,7 +109,7 @@ int main (int argc, char *argv [])
}
for (i = 0; i < 32768; ++i) {
uint32_t leds = (1 << 1);
uint32_t leds = 1;
unsigned int j;
for (j = 0; j < 3; ++j) {
if (zctx_interrupted) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment