diff options
| author | Elliot Matson <1711604+elliotmatson@users.noreply.github.com> | 2023-02-01 19:10:26 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-01 19:10:26 -0600 |
| commit | 62eafc3efb857290cf1dd9cd4aaab1a0fc57646a (patch) | |
| tree | 0d28eb6b3ce54da04a73caac2773cad81f046216 /src | |
| parent | ecc6ef169a93921ad3d4e0bd7540e27be045d624 (diff) | |
Another ESP_LOG formatting fix
CI doesn't cover the S2 or S3 models, I might see if I can fix that soon
Diffstat (limited to 'src')
| -rw-r--r-- | src/platforms/esp32s3/gdma_lcd_parallel16.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platforms/esp32s3/gdma_lcd_parallel16.cpp b/src/platforms/esp32s3/gdma_lcd_parallel16.cpp index 6daedba..d773b55 100644 --- a/src/platforms/esp32s3/gdma_lcd_parallel16.cpp +++ b/src/platforms/esp32s3/gdma_lcd_parallel16.cpp @@ -135,7 +135,7 @@ } ESP_LOGI("S3", "Clock divider is %d", LCD_CAM.lcd_clock.lcd_clkm_div_num); - ESP_LOGD("S3", "Resulting output clock frequency: %d Mhz", (160000000L/LCD_CAM.lcd_clock.lcd_clkm_div_num)); + ESP_LOGD("S3", "Resulting output clock frequency: %ld Mhz", (160000000L/LCD_CAM.lcd_clock.lcd_clkm_div_num)); LCD_CAM.lcd_clock.lcd_clkm_div_a = 1; // 0/1 fractional divide @@ -463,4 +463,4 @@ } // end flip -#endif
\ No newline at end of file +#endif |
