Skip to content

Commit 7d21e8a

Browse files
bigtreetechMsq001
authored andcommitted
✨ BigTreeTech SKR3 - STM32H743 (MarlinFirmware#24271)
Co-authored-by: Alan.Ma <[email protected]>
1 parent 2ab1df4 commit 7d21e8a

13 files changed

+2243
-215
lines changed

Marlin/src/HAL/STM32/sdio.cpp

+162-215
Large diffs are not rendered by default.

Marlin/src/core/boards.h

+2
Original file line numberDiff line numberDiff line change
@@ -429,6 +429,8 @@
429429
#define BOARD_T41U5XBB 5002 // T41U5XBB Teensy 4.1 breakout board
430430
#define BOARD_NUCLEO_F767ZI 5003 // ST NUCLEO-F767ZI Dev Board
431431
#define BOARD_BTT_SKR_SE_BX 5004 // BigTreeTech SKR SE BX (STM32H743II)
432+
#define BOARD_BTT_SKR_V3_0 5005 // BigTreeTech SKR V3.0 (STM32H743VG)
433+
#define BOARD_BTT_SKR_V3_0_EZ 5006 // BigTreeTech SKR V3.0 EZ (STM32H743VG)
432434

433435
//
434436
// Espressif ESP32 WiFi

Marlin/src/pins/pins.h

+4
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,10 @@
708708
#include "stm32f7/pins_NUCLEO_F767ZI.h" // STM32F7 env:NUCLEO_F767ZI
709709
#elif MB(BTT_SKR_SE_BX)
710710
#include "stm32h7/pins_BTT_SKR_SE_BX.h" // STM32H7 env:BTT_SKR_SE_BX
711+
#elif MB(BTT_SKR_V3_0)
712+
#include "stm32h7/pins_BTT_SKR_V3_0.h" // STM32H7 env:STM32H743Vx_btt
713+
#elif MB(BTT_SKR_V3_0_EZ)
714+
#include "stm32h7/pins_BTT_SKR_V3_0_EZ.h" // STM32H7 env:STM32H743Vx_btt
711715
#elif MB(TEENSY41)
712716
#include "teensy4/pins_TEENSY41.h" // Teensy-4.x env:teensy41
713717
#elif MB(T41U5XBB)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/**
2+
* Marlin 3D Printer Firmware
3+
* Copyright (c) 2022 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4+
*
5+
* Based on Sprinter and grbl.
6+
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License
19+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
20+
*
21+
*/
22+
#pragma once
23+
24+
#define BOARD_INFO_NAME "BTT SKR V3"
25+
26+
#include "pins_BTT_SKR_V3_0_common.h"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/**
2+
* Marlin 3D Printer Firmware
3+
* Copyright (c) 2022 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4+
*
5+
* Based on Sprinter and grbl.
6+
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
7+
*
8+
* This program is free software: you can redistribute it and/or modify
9+
* it under the terms of the GNU General Public License as published by
10+
* the Free Software Foundation, either version 3 of the License, or
11+
* (at your option) any later version.
12+
*
13+
* This program is distributed in the hope that it will be useful,
14+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
* GNU General Public License for more details.
17+
*
18+
* You should have received a copy of the GNU General Public License
19+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
20+
*
21+
*/
22+
#pragma once
23+
24+
#define BOARD_INFO_NAME "BTT SKR V3 EZ"
25+
26+
#include "pins_BTT_SKR_V3_0_common.h"

0 commit comments

Comments
 (0)