Added test-app for STM32L4

pull/143/head
Hajer KALLEL 2021-08-24 10:30:15 +01:00 committed by Daniele Lacamera
parent 3ee5f3942a
commit 94cacfe795
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
#include "led.h"
#include "hal.h"
#include "wolfboot/wolfboot.h"
#ifdef PLATFORM_stm32l4
void main(void)
{
uint32_t boot_version;
hal_init();
boot_led_on();
boot_version = wolfBoot_current_firmware_version();
if(boot_version == 1) {
/* Turn on Blue LED */
boot_led_on();
wolfBoot_update_trigger();
} else if(boot_version >= 2) {
/* Turn on Red LED */
led_on();
wolfBoot_success();
}
/* Wait for reboot */
while(1) {
}
}
#endif /* PLATFORM_stm32l4 */