E3D BigBox Rumba board (#27897)
Some checks failed
CI - Build Tests / Build Test (push) Waiting to run
CI - Unit Tests / Unit Test (push) Waiting to run
CI - Validate boards.h / Validate boards.h (push) Has been cancelled
CI - Validate Pins Files / Validate Pins Files (push) Has been cancelled

This commit is contained in:
RainMotorsports 2025-06-08 23:18:35 -04:00 committed by GitHub
parent 127bc94891
commit 5a5354107b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 38 additions and 2 deletions

View file

@ -338,7 +338,8 @@ else ifeq ($(HARDWARE_MOTHERBOARD),1164)
else ifeq ($(HARDWARE_MOTHERBOARD),1165)
# XTLW MFF V2.0
else ifeq ($(HARDWARE_MOTHERBOARD),1166)
# E3D Rumba BigBox
else ifeq ($(HARDWARE_MOTHERBOARD),1167)
#
# RAMBo and derivatives

View file

@ -131,6 +131,7 @@
#define BOARD_KODAMA_BARDO 1164 // Kodama Bardo V1.x (as found in the Kodama Trinus)
#define BOARD_XTLW_MFF_V1 1165 // XTLW MFF V1.0
#define BOARD_XTLW_MFF_V2 1166 // XTLW MFF V2.0
#define BOARD_RUMBA_E3D 1167 // E3D Rumba BigBox
//
// RAMBo and derivatives

View file

@ -223,6 +223,8 @@
#include "ramps/pins_XTLW_MFF_V1.h" // ATmega2560 env:mega2560
#elif MB(XTLW_MFF_V2)
#include "ramps/pins_XTLW_MFF_V2.h" // ATmega2560 env:mega2560
#elif MB(RUMBA_E3D)
#include "ramps/pins_RUMBA_E3D.h" // ATmega2560 env:mega2560
//
// RAMBo and derivatives

View file

@ -0,0 +1,33 @@
/**
* Marlin 3D Printer Firmware
* Copyright (c) 2025 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
#pragma once
// ATmega2560
#define BOARD_INFO_NAME "E3D Rumba"
#define DEFAULT_MACHINE_NAME "E3D BigBox"
// E3D uses PT100 connected to EXP3
#define TEMP_0_PIN 10 // Analog Input
#define TEMP_1_PIN 9 // Analog Input
#include "pins_RUMBA.h"

View file

@ -81,7 +81,6 @@
#define HEATER_BED_PIN PB2 // HOT BED
#define FAN1_PIN PC1 // extruder fan
#if HAS_TMC_UART
// Software serial
#define X_SERIAL_TX_PIN PB12