From ea79b86fb198751d6ed3f28b78a1aa9985396a01 Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Thu, 20 Feb 2025 16:20:05 +0100 Subject: [PATCH] Added comment in test-app --- test-app/app_mcxw.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test-app/app_mcxw.c b/test-app/app_mcxw.c index 66353934..903d91cb 100644 --- a/test-app/app_mcxw.c +++ b/test-app/app_mcxw.c @@ -77,18 +77,17 @@ void main(void) hal_init(); if (bootVer == 1) { + /* Blue LED ON, GPIOA port A pin 20 */ GPIO_PinWrite(GPIOA, 20, 0); wolfBoot_update_trigger(); } else { - /* Green LED GPIOA port A pin 19 */ + /* Green LED ON, GPIOA port A pin 19 */ GPIO_PinWrite(GPIOA, 19, 0); /* mark boot successful */ wolfBoot_success(); } - - /* busy wait */ while (1) { __WFI();