From 66d475f412107e039e6178bee7fcc1829f28dc3f Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Fri, 9 May 2025 20:58:39 +0200 Subject: [PATCH] boot.py: fix typo --- internal_filesystem/boot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_filesystem/boot.py b/internal_filesystem/boot.py index 2d61a726..1dc0597d 100644 --- a/internal_filesystem/boot.py +++ b/internal_filesystem/boot.py @@ -50,7 +50,7 @@ display_bus = lcd_bus.SPIBus( # /2 = 19200 works, including camera at 9FPS # 28800 is between the two and still works with camera! # 30720 is /5 and is already too much - BUFFER_SIZE = const(28800) +_BUFFER_SIZE = const(28800) fb1 = display_bus.allocate_framebuffer(_BUFFER_SIZE, lcd_bus.MEMORY_INTERNAL | lcd_bus.MEMORY_DMA) fb2 = display_bus.allocate_framebuffer(_BUFFER_SIZE, lcd_bus.MEMORY_INTERNAL | lcd_bus.MEMORY_DMA)