LPCXpresso55S69_MRuby_Aux/src/main.c

27 lines
413 B
C
Raw Normal View History

/* Board */
2023-03-09 14:51:36 +00:00
#include "board.h"
#include "clock_config.h"
#include "peripherals.h"
#include "pin_mux.h"
/* LittleFS */
#include "lfs.h"
/* App */
#include "app_lspi_flash.h"
2023-03-09 14:51:36 +00:00
int main(void) {
BOARD_InitBootPins();
BOARD_InitBootClocks();
2023-03-09 14:51:36 +00:00
BOARD_InitBootPeripherals();
if(app_lspi_flash_init() != 0) {
for(;;) {
/* -- */
}
}
2023-03-09 14:51:36 +00:00
for (;;) {
2023-03-09 14:51:36 +00:00
__WFI();
}
}