Esempio n. 1
0
int __low_level_init(void) {
  SystemCoreClockUpdate();  // Ensure, the SystemCoreClock is set
  //
  // Setup the systick timer with a 1ms delay
  // ISR located in GUI\GUI_X.c
  //
  SysTick_Config(SystemCoreClock/1000);  
  //
  // Init SDRAM, NAND- and NOR-flash
  //
  _EMC_Init();
  //
  //  Perform other initialization here, if required
  //
  return 1;
}
Esempio n. 2
0
int __low_level_init(void) {
  SystemCoreClockUpdate();   // Ensure, the SystemCoreClock is set
  _EMC_Init();               // Init SDRAM, NAND- and NOR-flash
  return 1;
}