Skip to content

Commit df6319e

Browse files
committed
✨ BTT Octopus Pro V1.0.1 (STM32H723ZE)
1 parent b58d5da commit df6319e

6 files changed

+610
-531
lines changed

Marlin/src/core/boards.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,8 @@
474474
#define BOARD_BTT_SKR_V3_0 6006 // BigTreeTech SKR V3.0 (STM32H743VI / STM32H723VG)
475475
#define BOARD_BTT_SKR_V3_0_EZ 6007 // BigTreeTech SKR V3.0 EZ (STM32H743VI / STM32H723VG)
476476
#define BOARD_BTT_OCTOPUS_MAX_EZ_V1_0 6008 // BigTreeTech Octopus Max EZ V1.0 (STM32H723ZE)
477-
#define BOARD_BTT_OCTOPUS_PRO_V1_1 6009 // BigTreeTech Octopus Pro v1.1 (STM32H723ZE)
477+
#define BOARD_BTT_OCTOPUS_PRO_V1_0_1 6009 // BigTreeTech Octopus Pro v1.0.1 (STM32H723ZE)
478+
#define BOARD_BTT_OCTOPUS_PRO_V1_1 6010 // BigTreeTech Octopus Pro v1.1 (STM32H723ZE)
478479

479480
//
480481
// Espressif ESP32 WiFi

Marlin/src/pins/pins.h

+2
Original file line numberDiff line numberDiff line change
@@ -825,6 +825,8 @@
825825
#include "stm32h7/pins_BTT_SKR_V3_0_EZ.h" // STM32H7 env:STM32H743VI_btt env:STM32H723VG_btt
826826
#elif MB(BTT_OCTOPUS_MAX_EZ_V1_0)
827827
#include "stm32h7/pins_BTT_OCTOPUS_MAX_EZ.h" // STM32H7 env:STM32H723ZE_btt
828+
#elif MB(BTT_OCTOPUS_PRO_V1_0_1)
829+
#include "stm32h7/pins_BTT_OCTOPUS_PRO_V1_0_1.h" // STM32H7 env:STM32H723ZE_btt
828830
#elif MB(BTT_OCTOPUS_PRO_V1_1)
829831
#include "stm32h7/pins_BTT_OCTOPUS_PRO_V1_1.h" // STM32H7 env:STM32H723ZE_btt
830832
#elif MB(TEENSY41)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
/**
2+
* Marlin 3D Printer Firmware
3+
* Copyright (c) 2023 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 "OCTOPUS PRO V1.0.1"
25+
26+
#include "pins_BTT_OCTOPUS_PRO_V1_common.h"
27+
28+
//
29+
// Steppers
30+
//
31+
#define Z2_ENABLE_PIN PA0
32+
33+
//
34+
// Heaters / Fans
35+
//
36+
#define HEATER_0_PIN PA2 // Heater0
37+
#define HEATER_2_PIN PB10 // Heater2
38+
39+
//
40+
// NeoPixel LED
41+
//
42+
#ifndef NEOPIXEL_PIN
43+
#define NEOPIXEL_PIN PB0
44+
#endif

0 commit comments

Comments
 (0)