mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-29 23:07:42 +00:00
✨ XTLW boards (#27260)
This commit is contained in:
parent
1d5e9c7dee
commit
30a70c480c
@ -132,6 +132,8 @@
|
||||
#define BOARD_PANOWIN_CUTLASS 1165 // Panowin Cutlass (as found in the Panowin F1)
|
||||
#define BOARD_KODAMA_BARDO 1166 // Kodama Bardo V1.x (as found in the Kodama Trinus)
|
||||
#define BOARD_DAGOMA_D6 1167 // Dagoma D6 (as found in the Dagoma DiscoUltimate V2 TMC)
|
||||
#define BOARD_XTLW_MFF_V1 1168 // XTLW MFF V1.0
|
||||
#define BOARD_XTLW_MFF_V2 1169 // XTLW MFF V2.0
|
||||
|
||||
//
|
||||
// RAMBo and derivatives
|
||||
@ -273,6 +275,7 @@
|
||||
#define BOARD_MKS_SGEN_L_V2 2509 // MKS SGEN_L V2
|
||||
#define BOARD_BTT_SKR_E3_TURBO 2510 // BigTreeTech SKR E3 Turbo
|
||||
#define BOARD_FLY_CDY 2511 // FLYmaker FLY CDY
|
||||
#define BOARD_XTLW_CLIMBER_8TH_LPC 2512 // XTLW_CLIMBER_8TH_LPC
|
||||
|
||||
//
|
||||
// SAM3X8E ARM Cortex-M3
|
||||
@ -467,6 +470,7 @@
|
||||
#define BOARD_MELLOW_FLY_E3_V2 5249 // Mellow Fly E3 V2 (STM32F407VG)
|
||||
#define BOARD_FYSETC_CHEETAH_V30 5250 // FYSETC Cheetah V3.0 (STM32F446RC)
|
||||
#define BOARD_BLACKBEEZMINI_V1 5251 // BlackBeezMini V1 (STM32F401CCU6)
|
||||
#define BOARD_XTLW_CLIMBER_8TH 5252 // XTLW Climber-8th (STM32F407VGT6)
|
||||
|
||||
//
|
||||
// Other ARM Cortex-M4
|
||||
|
280
Marlin/src/pins/lpc1769/pins_XTLW_CLIMBER_8TH_LPC.h
Normal file
280
Marlin/src/pins/lpc1769/pins_XTLW_CLIMBER_8TH_LPC.h
Normal file
@ -0,0 +1,280 @@
|
||||
/**
|
||||
* Marlin 3D Printer Firmware
|
||||
* Copyright (c) 2020 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
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#define BOARD_INFO_NAME "XTLW Climber-8th-LPC"
|
||||
|
||||
//
|
||||
// Servos
|
||||
//
|
||||
#define SERVO0_PIN P1_26
|
||||
|
||||
//
|
||||
// Limit Switches
|
||||
//
|
||||
#define X_MIN_PIN P1_29
|
||||
#define X_MAX_PIN P1_28
|
||||
#define Y_STOP_PIN P1_25
|
||||
#define Z_STOP_PIN P1_22
|
||||
|
||||
//
|
||||
// Steppers
|
||||
//
|
||||
#define X_STEP_PIN P2_00
|
||||
#define X_DIR_PIN P1_01
|
||||
#define X_ENABLE_PIN P1_00
|
||||
#ifndef X_CS_PIN
|
||||
#define X_CS_PIN P1_04
|
||||
#endif
|
||||
|
||||
#define X2_STEP_PIN P2_05
|
||||
#define X2_DIR_PIN P0_11
|
||||
#define X2_ENABLE_PIN P2_13
|
||||
#ifndef X2_CS_PIN
|
||||
#define X2_CS_PIN P0_10
|
||||
#endif
|
||||
|
||||
#define Y_STEP_PIN P2_01
|
||||
#define Y_DIR_PIN P1_09
|
||||
#define Y_ENABLE_PIN P1_08
|
||||
#ifndef Y_CS_PIN
|
||||
#define Y_CS_PIN P1_10
|
||||
#endif
|
||||
|
||||
#define Z_STEP_PIN P2_02
|
||||
#define Z_DIR_PIN P1_15
|
||||
#define Z_ENABLE_PIN P1_14
|
||||
#ifndef Z_CS_PIN
|
||||
#define Z_CS_PIN P1_16
|
||||
#endif
|
||||
|
||||
#define E0_STEP_PIN P2_03
|
||||
#define E0_DIR_PIN P4_29
|
||||
#define E0_ENABLE_PIN P1_17
|
||||
#ifndef E0_CS_PIN
|
||||
#define E0_CS_PIN P4_28
|
||||
#endif
|
||||
|
||||
#define E1_STEP_PIN P2_04
|
||||
#define E1_DIR_PIN P2_11
|
||||
#define E1_ENABLE_PIN P0_04
|
||||
#ifndef E1_CS_PIN
|
||||
#define E1_CS_PIN P2_12
|
||||
#endif
|
||||
|
||||
//
|
||||
// Software SPI pins for TMC2130 stepper drivers
|
||||
//
|
||||
#if ENABLED(TMC_USE_SW_SPI)
|
||||
#ifndef TMC_SW_MOSI
|
||||
#define TMC_SW_MOSI P0_20
|
||||
#endif
|
||||
#ifndef TMC_SW_MISO
|
||||
#define TMC_SW_MISO P0_19
|
||||
#endif
|
||||
#ifndef TMC_SW_SCK
|
||||
#define TMC_SW_SCK P0_21
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if HAS_TMC_UART
|
||||
|
||||
#define X_SERIAL_TX_PIN P1_04
|
||||
#define X_SERIAL_RX_PIN P1_04
|
||||
|
||||
#define X2_SERIAL_TX_PIN P0_10
|
||||
#define X2_SERIAL_RX_PIN P0_10
|
||||
|
||||
#define Y_SERIAL_TX_PIN P1_10
|
||||
#define Y_SERIAL_RX_PIN P1_10
|
||||
|
||||
#define Z_SERIAL_TX_PIN P1_16
|
||||
#define Z_SERIAL_RX_PIN P1_16
|
||||
|
||||
#define E0_SERIAL_TX_PIN P4_28
|
||||
#define E0_SERIAL_RX_PIN P4_28
|
||||
|
||||
#define E1_SERIAL_TX_PIN P2_12
|
||||
#define E1_SERIAL_RX_PIN P2_12
|
||||
|
||||
#endif
|
||||
|
||||
//
|
||||
// Temperature Sensors
|
||||
//
|
||||
#define TEMP_0_PIN P0_26_A3 // (T4)
|
||||
#define TEMP_1_PIN P0_25_A2 // (T3)
|
||||
#define TEMP_BED_PIN P0_23_A0 // (T1)
|
||||
|
||||
//
|
||||
// Heaters / Fans
|
||||
//
|
||||
#define HEATER_BED_PIN P3_26
|
||||
#define HEATER_0_PIN P3_25
|
||||
#define HEATER_1_PIN P1_20
|
||||
|
||||
#define FAN0_PIN P1_18
|
||||
#define FAN1_PIN P1_23
|
||||
#define FAN2_PIN P1_21
|
||||
#define FAN3_PIN P0_24
|
||||
#define FAN4_PIN P1_24
|
||||
|
||||
//
|
||||
// Filament sensor
|
||||
//
|
||||
#define FIL_RUNOUT_PIN P1_27
|
||||
#define FIL_RUNOUT2_PIN P0_27
|
||||
|
||||
//
|
||||
// SD Connection
|
||||
//
|
||||
#ifndef SDCARD_CONNECTION
|
||||
#define SDCARD_CONNECTION ONBOARD
|
||||
#endif
|
||||
|
||||
#if SD_CONNECTION_IS(ONBOARD)
|
||||
#define SD_SS_PIN P0_06
|
||||
#define SD_SCK_PIN P0_07
|
||||
#define SD_MISO_PIN P0_08
|
||||
#define SD_MOSI_PIN P0_09
|
||||
#define SD_DETECT_PIN P0_05
|
||||
#elif SD_CONNECTION_IS(LCD)
|
||||
#define SD_SCK_PIN P0_15
|
||||
#define SD_MISO_PIN P0_17
|
||||
#define SD_MOSI_PIN P0_18
|
||||
#define SD_SS_PIN P0_16
|
||||
#define SD_DETECT_PIN P2_06
|
||||
#endif
|
||||
|
||||
/**
|
||||
* ----- -----
|
||||
* NC | 1 2 | GND 5V | 1 2 | GND
|
||||
* RESET | 3 4 | P2_06 (SD_DETECT) (LCD_D7) P1_31 | 3 4 | P1_30 (LCD_D6)
|
||||
* (MOSI) P0_18 | 5 6 P0_01 (BTN_EN2) (LCD_D5) P2_08 | 5 6 P1_19 (LCD_D4)
|
||||
*(SD_SS) P0_16 | 7 8 | P0_00 (BTN_EN1) (LCD_RS) P2_10 | 7 8 | P0_22 (LCD_EN)
|
||||
* (SCK) P0_15 | 9 10| P0_17 (MISO) (BTN_ENC) P0_28 | 9 10| P2_07 (BEEPER)
|
||||
* ----- -----
|
||||
* EXP2 EXP1
|
||||
*/
|
||||
|
||||
//
|
||||
// LCDs and Controllers
|
||||
//
|
||||
#if IS_TFTGLCD_PANEL
|
||||
|
||||
#if ENABLED(TFTGLCD_PANEL_SPI)
|
||||
#define TFTGLCD_CS P0_00
|
||||
#endif
|
||||
|
||||
#define SD_DETECT_PIN P2_06
|
||||
|
||||
#elif HAS_WIRED_LCD
|
||||
|
||||
#define BEEPER_PIN P2_07
|
||||
#define BTN_ENC P0_28
|
||||
|
||||
#if ENABLED(CR10_STOCKDISPLAY)
|
||||
|
||||
#define LCD_PINS_RS P1_30
|
||||
|
||||
#define BTN_EN1 P0_22
|
||||
#define BTN_EN2 P1_19
|
||||
|
||||
#define LCD_PINS_EN P1_31
|
||||
#define LCD_PINS_D4 P2_08
|
||||
|
||||
#else
|
||||
|
||||
#define BTN_EN1 P0_00
|
||||
#define BTN_EN2 P0_01
|
||||
|
||||
#define LCD_SDSS P0_16
|
||||
|
||||
#if ENABLED(MKS_12864OLED_SSD1306)
|
||||
|
||||
#define LCD_PINS_DC P2_08
|
||||
#define DOGLCD_CS P2_10
|
||||
#define DOGLCD_A0 LCD_PINS_DC
|
||||
#define DOGLCD_SCK P1_19
|
||||
#define DOGLCD_MOSI P0_22
|
||||
|
||||
#define LCD_PINS_RS P1_30
|
||||
#define LCD_PINS_D7 P1_31
|
||||
#define KILL_PIN -1 // NC
|
||||
|
||||
#else // !MKS_12864OLED_SSD1306
|
||||
|
||||
#define LCD_PINS_RS P2_10
|
||||
|
||||
#define LCD_PINS_EN P0_22
|
||||
#define LCD_PINS_D4 P1_19
|
||||
|
||||
#if ENABLED(FYSETC_MINI_12864)
|
||||
|
||||
#define DOGLCD_CS P0_22
|
||||
#define DOGLCD_A0 P2_10
|
||||
#define DOGLCD_SCK P0_15
|
||||
#define DOGLCD_MOSI P0_18
|
||||
|
||||
#define LCD_BACKLIGHT_PIN -1
|
||||
|
||||
#define FORCE_SOFT_SPI // Use this if default of hardware SPI causes display problems
|
||||
// results in LCD soft SPI mode 3, SD soft SPI mode 0
|
||||
|
||||
#define LCD_RESET_PIN P1_19 // Must be high or open for LCD to operate normally.
|
||||
|
||||
#if ANY(FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0)
|
||||
#ifndef RGB_LED_R_PIN
|
||||
#define RGB_LED_R_PIN P2_08
|
||||
#endif
|
||||
#ifndef RGB_LED_G_PIN
|
||||
#define RGB_LED_G_PIN P1_30
|
||||
#endif
|
||||
#ifndef RGB_LED_B_PIN
|
||||
#define RGB_LED_B_PIN P1_31
|
||||
#endif
|
||||
#elif ENABLED(FYSETC_MINI_12864_2_1)
|
||||
#define NEOPIXEL_PIN P2_08
|
||||
#endif
|
||||
|
||||
#else // !FYSETC_MINI_12864
|
||||
|
||||
#if ENABLED(MKS_MINI_12864)
|
||||
#define DOGLCD_CS P2_08
|
||||
#define DOGLCD_A0 P1_30
|
||||
#endif
|
||||
|
||||
#if ENABLED(ULTIPANEL)
|
||||
#define LCD_PINS_D5 P2_08
|
||||
#define LCD_PINS_D6 P1_30
|
||||
#define LCD_PINS_D7 P1_31
|
||||
#endif
|
||||
|
||||
#endif // !FYSETC_MINI_12864
|
||||
|
||||
#endif // !MKS_12864OLED_SSD1306
|
||||
|
||||
#endif // !CR10_STOCKDISPLAY
|
||||
|
||||
#endif // HAS_WIRED_LCD
|
@ -270,6 +270,10 @@
|
||||
#include "ramps/pins_PANOWIN_CUTLASS.h" // ATmega2560 env:mega2560ext
|
||||
#elif MB(KODAMA_BARDO)
|
||||
#include "ramps/pins_KODAMA_BARDO.h" // ATmega2560 env:mega2560ext
|
||||
#elif MB(XTLW_MFF_V1)
|
||||
#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
|
||||
|
||||
//
|
||||
// RAMBo and derivatives
|
||||
@ -504,6 +508,8 @@
|
||||
#include "lpc1769/pins_BTT_SKR_E3_TURBO.h" // LPC1769 env:LPC1769
|
||||
#elif MB(FLY_CDY)
|
||||
#include "lpc1769/pins_FLY_CDY.h" // LPC1769 env:LPC1769
|
||||
#elif MB(XTLW_CLIMBER_8TH_LPC)
|
||||
#include "lpc1769/pins_XTLW_CLIMBER_8TH_LPC.h" // LPC1769 env:LPC1769
|
||||
|
||||
//
|
||||
// Due (ATSAM) boards
|
||||
@ -828,6 +834,8 @@
|
||||
#include "stm32f4/pins_MELLOW_FLY_E3_V2.h" // STM32F4 env:FLY_E3_V2
|
||||
#elif MB(BLACKBEEZMINI_V1)
|
||||
#include "stm32f4/pins_BLACKBEEZMINI.h" // STM32F4 env:BLACKBEEZMINI_V1
|
||||
#elif MB(XTLW_CLIMBER_8TH)
|
||||
#include "stm32f4/pins_XTLW_CLIMBER_8TH.h" // STM32F4 env:XTLW_CLIMBER_8TH
|
||||
|
||||
//
|
||||
// ARM Cortex-M7
|
||||
|
64
Marlin/src/pins/ramps/pins_XTLW_MFF_V1.h
Normal file
64
Marlin/src/pins/ramps/pins_XTLW_MFF_V1.h
Normal file
@ -0,0 +1,64 @@
|
||||
/**
|
||||
* Marlin 3D Printer Firmware
|
||||
* Copyright (c) 2024 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
|
||||
|
||||
/**
|
||||
* XTLW MFF V1.0 pin assignments
|
||||
*/
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#ifndef BOARD_INFO_NAME
|
||||
#define BOARD_INFO_NAME "XTLW MFF V1.0"
|
||||
#endif
|
||||
|
||||
//
|
||||
// Steppers
|
||||
//
|
||||
#ifndef E2_STEP_PIN
|
||||
#define E2_STEP_PIN 42
|
||||
#endif
|
||||
#ifndef E2_DIR_PIN
|
||||
#define E2_DIR_PIN 40
|
||||
#endif
|
||||
#ifndef E2_ENABLE_PIN
|
||||
#define E2_ENABLE_PIN 44
|
||||
#endif
|
||||
|
||||
//
|
||||
// Heaters / Fans
|
||||
//
|
||||
|
||||
#define FET_ORDER_EFB 1
|
||||
//#define HEATER_0_PIN 10
|
||||
#define MOSFET_D_PIN 7
|
||||
//#define HEATER_BED_PIN 8
|
||||
|
||||
// Filament sensor
|
||||
#if Y_MIN_PIN != 14 && !PIN_EXISTS(FIL_RUNOUT)
|
||||
#define FIL_RUNOUT_PIN 14 // Use Y_MIN limit switch interface
|
||||
#endif
|
||||
#if Z_MAX_PIN != 19 && !PIN_EXISTS(FIL_RUNOUT2)
|
||||
#define FIL_RUNOUT2_PIN 19 // Use Z_MAX limit switch interface
|
||||
#endif
|
||||
|
||||
#include "pins_RAMPS.h"
|
47
Marlin/src/pins/ramps/pins_XTLW_MFF_V2.h
Normal file
47
Marlin/src/pins/ramps/pins_XTLW_MFF_V2.h
Normal file
@ -0,0 +1,47 @@
|
||||
/**
|
||||
* Marlin 3D Printer Firmware
|
||||
* Copyright (c) 2024 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
|
||||
|
||||
/**
|
||||
* XTLW MFF V2.0 pin assignments
|
||||
*/
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#ifndef BOARD_INFO_NAME
|
||||
#define BOARD_INFO_NAME "XTLW MFF V2.0"
|
||||
#endif
|
||||
|
||||
//
|
||||
// Steppers
|
||||
//
|
||||
#define E2_STEP_PIN 40
|
||||
#define E2_DIR_PIN 42
|
||||
#define E2_ENABLE_PIN 63
|
||||
|
||||
//
|
||||
// Heaters / Fans
|
||||
//
|
||||
#define FAN1_PIN 65
|
||||
#define FAN2_PIN 66
|
||||
|
||||
#include "pins_XTLW_MFF_V1.h"
|
300
Marlin/src/pins/stm32f4/pins_XTLW_CLIMBER_8TH.h
Normal file
300
Marlin/src/pins/stm32f4/pins_XTLW_CLIMBER_8TH.h
Normal file
@ -0,0 +1,300 @@
|
||||
/**
|
||||
* Marlin 3D Printer Firmware
|
||||
* Copyright (c) 2024 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
|
||||
|
||||
#include "env_validate.h"
|
||||
|
||||
#define BOARD_INFO_NAME "XTLW Climber-8th"
|
||||
|
||||
// Use one of these or SDCard-based Emulation will be used
|
||||
#if NO_EEPROM_SELECTED
|
||||
#define FLASH_EEPROM_EMULATION // Use Flash-based EEPROM emulation
|
||||
#endif
|
||||
|
||||
#if ENABLED(FLASH_EEPROM_EMULATION)
|
||||
// Decrease delays and flash wear by spreading writes across the
|
||||
// 128 kB sector allocated for EEPROM emulation.
|
||||
#define FLASH_EEPROM_LEVELING
|
||||
#endif
|
||||
|
||||
// Avoid conflict with TIMER_TONE
|
||||
#define STEP_TIMER 10
|
||||
|
||||
//
|
||||
// Servos
|
||||
//
|
||||
#define SERVO0_PIN PC2
|
||||
|
||||
//
|
||||
// Limit Switches
|
||||
//
|
||||
#define X_MIN_PIN PC6
|
||||
#define X_MAX_PIN PC7
|
||||
#define Y_STOP_PIN PD10
|
||||
#define Z_STOP_PIN PD11
|
||||
|
||||
//
|
||||
// Z Probe
|
||||
//
|
||||
#define Z_MIN_PROBE_PIN PC3
|
||||
|
||||
//
|
||||
// Steppers
|
||||
//
|
||||
#define X_STEP_PIN PE5
|
||||
#define X_DIR_PIN PC0
|
||||
#define X_ENABLE_PIN PC1
|
||||
#ifndef X_CS_PIN
|
||||
#define X_CS_PIN PC15
|
||||
#endif
|
||||
|
||||
#define X2_STEP_PIN PE4
|
||||
#define X2_DIR_PIN PC13
|
||||
#define X2_ENABLE_PIN PC14
|
||||
#ifndef X2_CS_PIN
|
||||
#define X2_CS_PIN PA8
|
||||
#endif
|
||||
|
||||
#define Y_STEP_PIN PE3
|
||||
#define Y_DIR_PIN PB7
|
||||
#define Y_ENABLE_PIN PB8
|
||||
#ifndef Y_CS_PIN
|
||||
#define Y_CS_PIN PB6
|
||||
#endif
|
||||
|
||||
#define Z_STEP_PIN PE2
|
||||
#define Z_DIR_PIN PD6
|
||||
#define Z_ENABLE_PIN PD7
|
||||
#ifndef Z_CS_PIN
|
||||
#define Z_CS_PIN PD5
|
||||
#endif
|
||||
|
||||
#define E0_STEP_PIN PE1
|
||||
#define E0_DIR_PIN PD3
|
||||
#define E0_ENABLE_PIN PD4
|
||||
#ifndef E0_CS_PIN
|
||||
#define E0_CS_PIN PD1
|
||||
#endif
|
||||
|
||||
#define E1_STEP_PIN PE0
|
||||
#define E1_DIR_PIN PA15
|
||||
#define E1_ENABLE_PIN PD0
|
||||
#ifndef E1_CS_PIN
|
||||
#define E1_CS_PIN PE9
|
||||
#endif
|
||||
|
||||
//
|
||||
// Temperature Sensors
|
||||
//
|
||||
#define TEMP_BED_PIN PC5
|
||||
#define TEMP_0_PIN PC4
|
||||
#define TEMP_1_PIN PA3
|
||||
|
||||
//
|
||||
// Heaters / Fans
|
||||
//
|
||||
#define HEATER_0_PIN PD12
|
||||
#define HEATER_1_PIN PD13
|
||||
#define HEATER_BED_PIN PB0
|
||||
|
||||
#define FAN0_PIN PA2
|
||||
#define FAN1_PIN PA0
|
||||
#define FAN2_PIN PA1
|
||||
#define FAN3_PIN PB9
|
||||
#define FAN4_PIN PE6
|
||||
|
||||
//
|
||||
// Filament Runout Sensor
|
||||
//
|
||||
#define FIL_RUNOUT_PIN PE10
|
||||
#define FIL_RUNOUT2_PIN PE12
|
||||
|
||||
//
|
||||
// Software SPI pins for TMC2130 stepper drivers
|
||||
//
|
||||
#if ENABLED(TMC_USE_SW_SPI)
|
||||
#ifndef TMC_SW_MOSI
|
||||
#define TMC_SW_MOSI PB5
|
||||
#endif
|
||||
#ifndef TMC_SW_MISO
|
||||
#define TMC_SW_MISO PB4
|
||||
#endif
|
||||
#ifndef TMC_SW_SCK
|
||||
#define TMC_SW_SCK PB3
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if HAS_TMC_UART
|
||||
|
||||
#define X_SERIAL_TX_PIN PC15
|
||||
#define X_SERIAL_RX_PIN X_SERIAL_TX_PIN
|
||||
|
||||
#define X2_SERIAL_TX_PIN PA8
|
||||
#define X2_SERIAL_RX_PIN X2_SERIAL_TX_PIN
|
||||
|
||||
#define Y_SERIAL_TX_PIN PB6
|
||||
#define Y_SERIAL_RX_PIN Y_SERIAL_TX_PIN
|
||||
|
||||
#define Z_SERIAL_TX_PIN PD5
|
||||
#define Z_SERIAL_RX_PIN Z_SERIAL_TX_PIN
|
||||
|
||||
#define E0_SERIAL_TX_PIN PD1
|
||||
#define E0_SERIAL_RX_PIN E0_SERIAL_TX_PIN
|
||||
|
||||
#define E1_SERIAL_TX_PIN PE9
|
||||
#define E1_SERIAL_RX_PIN E1_SERIAL_TX_PIN
|
||||
|
||||
// Reduce baud rate to improve software serial reliability
|
||||
#define TMC_BAUD_RATE 19200
|
||||
#endif
|
||||
|
||||
//
|
||||
// SD Connection
|
||||
//
|
||||
#ifndef SDCARD_CONNECTION
|
||||
#define SDCARD_CONNECTION ONBOARD
|
||||
#endif
|
||||
|
||||
//
|
||||
// Onboard SD card
|
||||
// Must use soft SPI because Marlin's default hardware SPI is tied to LCD's EXP2
|
||||
//
|
||||
#if SD_CONNECTION_IS(ONBOARD)
|
||||
#define SDIO_SUPPORT // Use SDIO for onboard SD
|
||||
#define SDIO_D0_PIN PC8
|
||||
#define SDIO_D1_PIN PC9
|
||||
#define SDIO_D2_PIN PC10
|
||||
#define SDIO_D3_PIN PC11
|
||||
#define SDIO_CK_PIN PC12
|
||||
#define SDIO_CMD_PIN PD2
|
||||
#elif SD_CONNECTION_IS(LCD)
|
||||
#define CUSTOM_SPI_PINS
|
||||
#define SDSS PA4
|
||||
#define SD_SS_PIN SDSS
|
||||
#define SD_SCK_PIN PA5
|
||||
#define SD_MISO_PIN PA6
|
||||
#define SD_MOSI_PIN PA7
|
||||
#define SD_DETECT_PIN PE13
|
||||
#endif
|
||||
|
||||
/**
|
||||
* ----- -----
|
||||
* NC | 1 2 | GND 5V | 1 2 | GND
|
||||
* RESET | 3 4 | PE13 (SD_DETECT) (LCD_D7) PA14 | 3 4 | PA13 (LCD_D6)
|
||||
* (MOSI) PA7 | 5 6 PD14 (BTN_EN1) (LCD_D5) PE14 | 5 6 PE15 (LCD_D4)
|
||||
* (SD_SS) PA4 | 7 8 | PD15 (BTN_EN2) (LCD_RS) PE8 | 7 8 | PB2 (LCD_EN)
|
||||
* (SCK) PA5 | 9 10| PA6 (MISO) (BTN_ENC) PE7 | 9 10| PB1 (BEEPER)
|
||||
* ----- -----
|
||||
* EXP2 EXP1
|
||||
*/
|
||||
|
||||
#define EXP1_03_PIN PA14
|
||||
#define EXP1_04_PIN PA13
|
||||
#define EXP1_05_PIN PE14
|
||||
#define EXP1_06_PIN PE15
|
||||
#define EXP1_07_PIN PE8
|
||||
#define EXP1_08_PIN PB2
|
||||
#define EXP1_09_PIN PE7
|
||||
#define EXP1_10_PIN PB1
|
||||
|
||||
#define EXP2_03_PIN -1
|
||||
#define EXP2_04_PIN PE13
|
||||
#define EXP2_05_PIN PA7
|
||||
#define EXP2_06_PIN PD14
|
||||
#define EXP2_07_PIN PA4
|
||||
#define EXP2_08_PIN PD15
|
||||
#define EXP2_09_PIN PA5
|
||||
#define EXP2_10_PIN PA6
|
||||
|
||||
//
|
||||
// LCDs and Controllers
|
||||
//
|
||||
#if IS_TFTGLCD_PANEL
|
||||
|
||||
#if ENABLED(TFTGLCD_PANEL_SPI)
|
||||
#define TFTGLCD_CS EXP2_08_PIN
|
||||
#endif
|
||||
|
||||
#elif HAS_WIRED_LCD
|
||||
|
||||
#define BEEPER_PIN EXP1_10_PIN
|
||||
#define BTN_ENC EXP1_09_PIN
|
||||
|
||||
#if ENABLED(MKS_MINI_12864)
|
||||
|
||||
#define DOGLCD_A0 EXP1_04_PIN
|
||||
#define DOGLCD_CS EXP1_05_PIN
|
||||
#define BTN_EN1 EXP2_06_PIN
|
||||
#define BTN_EN2 EXP2_08_PIN
|
||||
|
||||
#else
|
||||
|
||||
#define LCD_PINS_RS EXP1_07_PIN
|
||||
|
||||
#define BTN_EN1 EXP2_06_PIN
|
||||
#define BTN_EN2 EXP2_08_PIN
|
||||
|
||||
#define LCD_PINS_EN EXP1_08_PIN
|
||||
#define LCD_PINS_D4 EXP1_06_PIN
|
||||
|
||||
#if ENABLED(FYSETC_MINI_12864)
|
||||
#define DOGLCD_CS EXP1_08_PIN
|
||||
#define DOGLCD_A0 EXP1_07_PIN
|
||||
//#define LCD_BACKLIGHT_PIN -1
|
||||
#define LCD_RESET_PIN EXP1_06_PIN // Must be high or open for LCD to operate normally.
|
||||
#if ANY(FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0)
|
||||
#ifndef RGB_LED_R_PIN
|
||||
#define RGB_LED_R_PIN EXP1_05_PIN
|
||||
#endif
|
||||
#ifndef RGB_LED_G_PIN
|
||||
#define RGB_LED_G_PIN EXP1_04_PIN
|
||||
#endif
|
||||
#ifndef RGB_LED_B_PIN
|
||||
#define RGB_LED_B_PIN EXP1_03_PIN
|
||||
#endif
|
||||
#elif ENABLED(FYSETC_MINI_12864_2_1)
|
||||
#define NEOPIXEL_PIN EXP1_05_PIN
|
||||
#endif
|
||||
#endif // !FYSETC_MINI_12864
|
||||
|
||||
#if IS_ULTIPANEL
|
||||
#define LCD_PINS_D5 EXP1_05_PIN
|
||||
#define LCD_PINS_D6 EXP1_04_PIN
|
||||
#define LCD_PINS_D7 EXP1_03_PIN
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#endif // HAS_WIRED_LCD
|
||||
|
||||
// Alter timing for graphical display
|
||||
#if ENABLED(U8GLIB_ST7920)
|
||||
#ifndef BOARD_ST7920_DELAY_1
|
||||
#define BOARD_ST7920_DELAY_1 120
|
||||
#endif
|
||||
#ifndef BOARD_ST7920_DELAY_2
|
||||
#define BOARD_ST7920_DELAY_2 80
|
||||
#endif
|
||||
#ifndef BOARD_ST7920_DELAY_3
|
||||
#define BOARD_ST7920_DELAY_3 580
|
||||
#endif
|
||||
#endif
|
@ -889,3 +889,20 @@ build_flags = ${stm32_variant.build_flags}
|
||||
-DUSBD_IRQ_PRIO=5 -DUSBD_IRQ_SUBPRIO=6
|
||||
-DHSE_VALUE=8000000U
|
||||
upload_protocol = stlink
|
||||
|
||||
#
|
||||
# XTLW3D Climber-8th-F4 (STM32F407VGT6 ARM Cortex-M4)
|
||||
#
|
||||
[env:XTLW_CLIMBER_8TH]
|
||||
platform = ${common_stm32.platform}
|
||||
extends = stm32_variant
|
||||
platform_packages = ${stm_flash_drive.platform_packages}
|
||||
board = marlin_STM32F407VGT6_CCM
|
||||
board_build.variant = MARLIN_F4x7Vx
|
||||
board_build.offset = 0x8000
|
||||
board_upload.offset_address = 0x08008000
|
||||
build_flags = ${stm_flash_drive.build_flags}
|
||||
-DUSE_USBHOST_HS -DUSE_USB_HS_IN_FS
|
||||
-DUSBD_IRQ_PRIO=5 -DUSBD_IRQ_SUBPRIO=6
|
||||
-DHSE_VALUE=8000000U -DHAL_SD_MODULE_ENABLED
|
||||
-DPIN_SERIAL3_RX=PD_9 -DPIN_SERIAL3_TX=PD_8
|
||||
|
Loading…
Reference in New Issue
Block a user