We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b42782 commit ea79b86Copy full SHA for ea79b86
test-app/app_mcxw.c
@@ -77,18 +77,17 @@ void main(void)
77
78
hal_init();
79
if (bootVer == 1) {
80
+ /* Blue LED ON, GPIOA port A pin 20 */
81
GPIO_PinWrite(GPIOA, 20, 0);
82
wolfBoot_update_trigger();
83
}
84
else {
- /* Green LED GPIOA port A pin 19 */
85
+ /* Green LED ON, GPIOA port A pin 19 */
86
GPIO_PinWrite(GPIOA, 19, 0);
87
/* mark boot successful */
88
wolfBoot_success();
89
90
-
91
92
/* busy wait */
93
while (1) {
94
__WFI();
0 commit comments