HDMI

Source code can be downloaded from source:/Examples/HDMI

Description
This example shows the operation of HDMI extension board by displaying image on HDMI compatible screen as the result.

Initialization
1     SystemInit();
2     CGU_Init();
Configure external flash
1     MemoryPinInit();
2     EMCSRDRAMInit();
3     EMCFlashInit();
Init SysTick to 1ms
1     SysTick_Config(CGU_GetPCLKFrequency(CGU_PERIPHERAL_M4CORE) / 1000);
Copy image to SDRAM
1     memcpy((void *)SDRAM_BASE_ADDR, (void *)IMAGE_FLASH_ADDR, 2UL*1024*768);
Initialize TFP410
1     TFP410_Init((void *)SDRAM_BASE_ADDR);
2

Undefined