Browse Source

Fix TFT typo

Scott Lahteine 4 years ago
parent
commit
9f10695b3f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/HAL/STM32/tft/tft_ltdc.cpp

+ 1
- 1
Marlin/src/HAL/STM32/tft/tft_ltdc.cpp View File

@@ -312,7 +312,7 @@ void TFT_LTDC::DrawImage(uint16_t sx, uint16_t sy, uint16_t ex, uint16_t ey, uin
312 312
   uint16_t offline = TFT_WIDTH - (ex - sx);
313 313
   uint32_t addr = (uint32_t)&framebuffer[(TFT_WIDTH * sy) + sx];
314 314
 
315
-  CBI(DMA2D->CR, 0)
315
+  CBI(DMA2D->CR, 0);
316 316
   DMA2D->CR = 0 << 16;
317 317
   DMA2D->FGPFCCR = 0X02;
318 318
   DMA2D->FGOR = 0;

Loading…
Cancel
Save