samples: board: 96b_argonkey: remove led blinking

The LED part is taking too much time. Let's skip the
led blinking part.

Signed-off-by: Armando Visconti <armando.visconti@st.com>
This commit is contained in:
Armando Visconti 2018-07-09 14:11:08 +02:00 committed by Kumar Gala
parent 21a27e8807
commit aa609faab3

View file

@ -130,19 +130,6 @@ void main(void)
led_off(ledc, i);
k_sleep(DELAY_TIME);
}
/* blink all leds */
for (i = 0; i < NUM_LEDS; i++) {
led_blink(ledc, i, 200, 50);
}
k_sleep(1000);
/* turn all leds off */
for (i = 0; i < NUM_LEDS; i++) {
led_off(ledc, i);
k_sleep(5);
}
#endif
led0 = device_get_binding(LED0_GPIO_CONTROLLER);