From 769f69d049bad50c92bb755503ac2cc0d5d34915 Mon Sep 17 00:00:00 2001 From: gemu2015 Date: Mon, 18 May 2020 15:02:27 +0200 Subject: [PATCH] remove debug print --- tasmota/xdrv_13_display.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/xdrv_13_display.ino b/tasmota/xdrv_13_display.ino index 2d0ef4f0f..d2466d051 100644 --- a/tasmota/xdrv_13_display.ino +++ b/tasmota/xdrv_13_display.ino @@ -1575,7 +1575,7 @@ void Draw_RGB_Bitmap(char *file,uint16_t xp, uint16_t yp) { uint16_t ysize; if (mem[0]==0xff && mem[1]==0xd8) { get_jpeg_size(mem, size, &xsize, &ysize); - Serial.printf(" x,y %d - %d\n",xsize, ysize ); + //Serial.printf(" x,y %d - %d\n",xsize, ysize ); if (xsize && ysize) { uint8_t *out_buf = (uint8_t *)heap_caps_malloc((xsize*ysize*3)+4, MALLOC_CAP_SPIRAM | MALLOC_CAP_8BIT); if (out_buf) {