You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
845 B
35 lines
845 B
#include <stdio.h>
|
|
#include "board.h"
|
|
#include "peripherals.h"
|
|
#include "pin_mux.h"
|
|
#include "clock_config.h"
|
|
#include "MK22F51212.h"
|
|
#include "fsl_smc.h"
|
|
#include "fsl_rcm.h"
|
|
#include "fsl_pmc.h"
|
|
#include "application.h"
|
|
|
|
static void safetyBelt(void) {
|
|
/* delay application: do NOT enter low power to prevent lock-out during development */
|
|
for(int i=0; i<5000000; i++) {
|
|
__asm("nop");
|
|
}
|
|
}
|
|
|
|
int main(void) {
|
|
/* Init board hardware. */
|
|
safetyBelt();
|
|
/* Power related. */
|
|
SMC_SetPowerModeProtection(SMC, kSMC_AllowPowerModeAll);
|
|
if (kRCM_SourceWakeup & RCM_GetPreviousResetSources(RCM)) { /* Wakeup from VLLS. */
|
|
PMC_ClearPeriphIOIsolationFlag(PMC);
|
|
NVIC_ClearPendingIRQ(LLWU_IRQn);
|
|
}
|
|
|
|
BOARD_InitBootPins();
|
|
BOARD_InitBootClocks();
|
|
BOARD_InitBootPeripherals();
|
|
|
|
APP_Run(); /* run application */
|
|
return 0;
|
|
}
|
|
|