Skip to content

Commit 2bd2fff

Browse files
bigtreetechX-Ryl669
authored andcommitted
BTT SKR-SE-BX (STM32H743IIT6 ARM Cortex M7) and BIQU_BX_TFT70 (MarlinFirmware#21536)
1 parent 67487b3 commit 2bd2fff

File tree

30 files changed

+3694
-17
lines changed

30 files changed

+3694
-17
lines changed

.github/workflows/test-builds.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ jobs:
8989
- mks_robin_nano35_stm32
9090
- NUCLEO_F767ZI
9191
- REMRAM_V1
92+
- BTT_SKR_SE_BX
9293

9394
# Put lengthy tests last
9495

Marlin/Configuration.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2496,6 +2496,11 @@
24962496
//
24972497
//#define ANET_ET5_TFT35
24982498

2499+
//
2500+
// 1024x600, 7", RGB Stock Display from BIQU-BX
2501+
//
2502+
//#define BIQU_BX_TFT70
2503+
24992504
//
25002505
// Generic TFT with detailed options
25012506
//

Marlin/src/HAL/STM32/MarlinSPI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2020
*
2121
*/
22-
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC)
22+
#if defined(ARDUINO_ARCH_STM32) && !defined(STM32GENERIC) && !defined(STM32H7xx)
2323

2424
#include "MarlinSPI.h"
2525

Marlin/src/HAL/STM32/inc/SanityCheck.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@
5252
#error "SERIAL_STATS_DROPPED_RX is not supported on STM32."
5353
#endif
5454

55-
#if ANY(TFT_COLOR_UI, TFT_LVGL_UI, TFT_CLASSIC_UI) && NOT_TARGET(STM32F4xx, STM32F1xx)
56-
#error "TFT_COLOR_UI, TFT_LVGL_UI and TFT_CLASSIC_UI are currently only supported on STM32F4 and STM32F1 hardware."
55+
#if ANY(TFT_COLOR_UI, TFT_LVGL_UI, TFT_CLASSIC_UI) && NOT_TARGET(STM32H7xx, STM32F4xx, STM32F1xx)
56+
#error "TFT_COLOR_UI, TFT_LVGL_UI and TFT_CLASSIC_UI are currently only supported on STM32H7, STM32F4 and STM32F1 hardware."
5757
#endif

0 commit comments

Comments
 (0)