Closed joaoclaudioeb closed 2 years ago
Create something like this:
#if defined(CONFIG_DEV_LEDS_ENABLED) && (CONFIG_DEV_LEDS_ENABLED == 1) /* LEDs device initialization */ if (leds_init() != 0) { error_counter++; } #endif /* CONFIG_DEV_LEDS_ENABLED */
Today is like this:
/* LEDs device initialization */ if (leds_init() != 0) { error_counter++; }
Create something like this:
Today is like this: