Skip to content

Commit

Permalink
Merge pull request #879 from iabdalkader/dsi_pll_fix
Browse files Browse the repository at this point in the history
libraries/Arduino_H7_Video: Fix the DSI PLL configuration.
  • Loading branch information
facchinm committed May 13, 2024
2 parents b21c7bf + 907d68c commit f3c4be2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/Arduino_H7_Video/src/dsi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ static void dsi_layerInit(uint16_t LayerIndex, uint32_t FB_Address);
int dsi_init(uint8_t bus, struct edid *edid, struct display_timing *dt) {
#ifdef ARDUINO_GIGA
static const uint32_t DSI_PLLNDIV = 125;
static const uint32_t DSI_PLLIDF = DSI_PLL_IN_DIV3;
static const uint32_t DSI_PLLIDF = DSI_PLL_IN_DIV4;
static const uint32_t DSI_PLLODF = DSI_PLL_OUT_DIV1;
static const uint32_t DSI_TXEXCAPECLOCKDIV = 4;
#undef HSE_VALUE
Expand Down Expand Up @@ -412,4 +412,4 @@ extern "C" void HAL_LTDC_ReloadEventCallback(LTDC_HandleTypeDef *hltdc) {
reloadLTDC_status = 1;
}

/**** END OF FILE ****/
/**** END OF FILE ****/

0 comments on commit f3c4be2

Please sign in to comment.