Searched refs:fpr (Results 1 – 1 of 1) sorted by relevance
168 uint32_t fpr; /* Pixel clock = PLL clock * ((fpr + 1) / 2^20) */ in SSD1963_Init() local187 fpr = (uint32_t)fprFloat; in SSD1963_Init()189 if ((fpr < 1U) || (fpr > (SSD1963_LCDC_FPR_MAX + 1U))) in SSD1963_Init()194 fpr--; in SSD1963_Init()230 commandParam[0] = (uint8_t)((fpr & 0xFF0000U) >> 16U); in SSD1963_Init()231 commandParam[1] = (uint8_t)((fpr & 0xFF00U) >> 8U); in SSD1963_Init()232 commandParam[2] = (uint8_t)((fpr & 0xFFU)); in SSD1963_Init()