STM32LTDC: Fix board function signatures
This commit is contained in:
parent
6fa3520f2a
commit
37450998e1
@ -393,7 +393,7 @@ static void configureLcdPins(void) {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
static GFXINLINE void init_ltdc_clock()
|
static GFXINLINE void init_ltdc_clock(void)
|
||||||
{
|
{
|
||||||
// Reset the LTDC peripheral
|
// Reset the LTDC peripheral
|
||||||
RCC->APB2RSTR |= RCC_APB2RSTR_LTDCRST;
|
RCC->APB2RSTR |= RCC_APB2RSTR_LTDCRST;
|
||||||
@ -407,7 +407,7 @@ static GFXINLINE void init_ltdc_clock()
|
|||||||
}
|
}
|
||||||
|
|
||||||
#if LTDC_USE_DMA2D
|
#if LTDC_USE_DMA2D
|
||||||
static GFXINLINE void init_dma2d_clock()
|
static GFXINLINE void init_dma2d_clock(void)
|
||||||
{
|
{
|
||||||
// Enable DMA2D clock
|
// Enable DMA2D clock
|
||||||
RCC->AHB1ENR |= RCC_AHB1ENR_DMA2DEN;
|
RCC->AHB1ENR |= RCC_AHB1ENR_DMA2DEN;
|
||||||
|
@ -55,13 +55,13 @@ static const ltdcConfig driverCfg = {
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
static GFXINLINE void init_ltdc_clock()
|
static GFXINLINE void init_ltdc_clock(void)
|
||||||
{
|
{
|
||||||
// Setup LTDC clock and enable the peripheral
|
// Setup LTDC clock and enable the peripheral
|
||||||
}
|
}
|
||||||
|
|
||||||
#if LTDC_USE_DMA2D
|
#if LTDC_USE_DMA2D
|
||||||
static GFXINLINE void init_dma2d_clock()
|
static GFXINLINE void init_dma2d_clock(void)
|
||||||
{
|
{
|
||||||
// Setup DMA2D clock and enable the peripheral
|
// Setup DMA2D clock and enable the peripheral
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user