大家好,我用一块GD32F470,加一个GM8285C(RGB-LVDS 发送器),驱动一块10.1寸(1280x800)的TFT LCD屏,目前有闪屏问题。不知道是否和时钟设置有关,下面是时钟设置相关代码,不知道哪些大神可以看看,谢谢。
------------------------------------------------------------------------------
static void tli_config(void)
{
tli_parameter_struct tli_init_struct;
tli_layer_parameter_struct tli_layer_init_struct;
rcu_periph_clock_enable(RCU_TLI);
tli_gpio_config();
/* configure the PLLSAI clock to generate lcd clock */
if(ERROR == rcu_pllsai_config(192, 2, 3)) {
while(1);
}
rcu_tli_clock_div_config(RCU_PLLSAIR_DIV8);
rcu_osci_on(RCU_PLLSAI_CK);
if(ERROR == rcu_osci_stab_wait(RCU_PLLSAI_CK)) {
while(1);
} |