boot: zephyr: adding indication LED and detect pin debounce

Setting LED to initial level before beginning.
Making comment about BOOT_SERIAL_DETECT_DELAY more clear in Kconfig.

Signed-off-by: Jared Wolff <hello@jaredwolff.com>
diff --git a/boot/zephyr/main.c b/boot/zephyr/main.c
index 3f17358..f0ef3e5 100644
--- a/boot/zephyr/main.c
+++ b/boot/zephyr/main.c
@@ -137,13 +137,13 @@
 {
     
   led = device_get_binding(LED0_GPIO_LABEL);
-  if (led == NULL)
-  {
+  if (led == NULL) {
     BOOT_LOG_ERR("Didn't find LED device %s\n", LED0_GPIO_LABEL);
     return;
   }
 
   gpio_pin_configure(led, LED0_GPIO_PIN, LED0_GPIO_FLAGS);
+  gpio_pin_set(led, LED0_GPIO_PIN, 0);
 
 }
 #endif