From c70780d490c205000f924fb897f235813d369804 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Wed, 8 Oct 2025 17:54:29 +0200 Subject: [PATCH] Remove useless current_hardware variable --- internal_filesystem/boot.py | 2 -- internal_filesystem/boot_fri3d-2024.py | 2 -- internal_filesystem/boot_unix.py | 2 -- 3 files changed, 6 deletions(-) diff --git a/internal_filesystem/boot.py b/internal_filesystem/boot.py index 4687f7c0..3df725fd 100644 --- a/internal_filesystem/boot.py +++ b/internal_filesystem/boot.py @@ -1,7 +1,5 @@ # Hardware initialization for ESP32-S3-Touch-LCD-2 # Manufacturer's website at https://www.waveshare.com/wiki/ESP32-S3-Touch-LCD-2 -current_hardware = "waveshare-esp32-s3-touch-lcd-2" - from machine import Pin, SPI import st7789 import lcd_bus diff --git a/internal_filesystem/boot_fri3d-2024.py b/internal_filesystem/boot_fri3d-2024.py index 826d7f59..ae3cd10d 100644 --- a/internal_filesystem/boot_fri3d-2024.py +++ b/internal_filesystem/boot_fri3d-2024.py @@ -1,6 +1,4 @@ # Hardware initialization for Fri3d Camp 2024 Badge -current_hardware = "fri3d-2024" - from machine import Pin, SPI import st7789 import lcd_bus diff --git a/internal_filesystem/boot_unix.py b/internal_filesystem/boot_unix.py index fb9e0333..68266a83 100644 --- a/internal_filesystem/boot_unix.py +++ b/internal_filesystem/boot_unix.py @@ -1,6 +1,4 @@ # Hardware initialization for Unix and MacOS systems -current_hardware = "unix" - import lcd_bus import lvgl as lv import sdl_display