From 1649a7e2a068898c9ad08b306b3567588573b478 Mon Sep 17 00:00:00 2001 From: Philippe G Date: Thu, 2 Dec 2021 11:10:30 -0800 Subject: [PATCH] add trace for ST7735 offset --- components/display/ST77xx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/display/ST77xx.c b/components/display/ST77xx.c index eef6c6fc..8661feb4 100644 --- a/components/display/ST77xx.c +++ b/components/display/ST77xx.c @@ -235,7 +235,7 @@ static bool Init( struct GDS_Device* Device ) { Private->iRAM = heap_caps_malloc( (Private->PageSize + 1) * Device->Width * Depth, MALLOC_CAP_INTERNAL | MALLOC_CAP_DMA ); #endif - ESP_LOGI(TAG, "ST77xx with bit depth %u, page %u, iRAM %p", Device->Depth, Private->PageSize, Private->iRAM); + ESP_LOGI(TAG, "ST77xx with bit depth %u, offsets %hu:%hu, page %u, iRAM %p", Device->Depth, Private->Offset.Height, Private->Offset.Width, Private->PageSize, Private->iRAM); // Sleepout + Booster Device->WriteCommand( Device, 0x11 );