コード例 #1
0
/***************************************************************************//**
 * @brief
 *   Initialize board and LCD controller
 *
 * @details
 *   This function is called during initialization and when exited from AEM mode
 ******************************************************************************/
static void _InitController(void) {
      /* Initialize EBI banks (Board Controller, external PSRAM, ..) */

  DVK_init(DVK_Init_EBI);
    /* If first word of user data page is non-zero, enable eA Profiler trace */
  TRACE_ProfilerSetup();

  /* Configure for 32MHz HFXO operation of core clock */
  CMU_ClockSelectSet(cmuClock_HF, cmuSelect_HFXO);

  /* on Giant & Leopard we have to reduce core clock when
   * talking with slow TFT controller */
  CMU_ClockDivSet(cmuClock_CORE, cmuClkDiv_2);

  CMU_ClockEnable( cmuClock_GPIO, true);
  CMU_ClockEnable( cmuClock_ADC0, true);
  LCD_InitializeLCD();
}
コード例 #2
0
ファイル: ParTest.c プロジェクト: Pinekn/freeRTOS
void vParTestInitialise( void )
{
	DVK_init();
	DVK_setLEDs( 0 );
}