123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- /**
- * Marlin 3D Printer Firmware
- * Copyright (c) 2023 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"
- #ifndef BOARD_INFO_NAME
- #define BOARD_INFO_NAME "Custom Blackpill"
- #endif
- #ifndef DEFAULT_MACHINE_NAME
- #define DEFAULT_MACHINE_NAME "SLA Printer"
- #endif
- #define DISABLE_DEBUG false // DISABLE_(DEBUG|JTAG) is not supported for STM32F4.
- #define ALLOW_STM32F4
- #define BOARD_NO_NATIVE_USB
- //
- // EEPROM
- //
- #if NO_EEPROM_SELECTED
- #define IIC_BL24CXX_EEPROM // EEPROM on I2C-0
- //#define SDCARD_EEPROM_EMULATION
- #endif
- //
- // Servos
- //
- #if !defined(SERVO0_PIN) && !defined(HAS_PIN_27_BOARD)
- #define SERVO0_PIN PC13 // BLTouch OUT
- #endif
- #define LED_PIN PC13
- //
- // Limit Switches
- //
- #define Z_STOP_PIN PA15
- #define X_STOP_PIN PA11
- #define Y_STOP_PIN PA12
- //
- // Filament Runout Sensor
- //
- #define FIL_RUNOUT_PIN PB15 // "Pulled-high"
- //
- // Steppers
- //
- #define X_STEP_PIN PB0
- #define X_DIR_PIN PB1
- #define X_ENABLE_PIN PB2 // Shared
- #define Y_STEP_PIN PB3
- #define Y_DIR_PIN PB4
- #define Y_ENABLE_PIN X_ENABLE_PIN
- #define Z_STEP_PIN PB8
- #define Z_DIR_PIN PB5
- #define Z_ENABLE_PIN X_ENABLE_PIN
- #define E0_STEP_PIN PB9
- #define E0_DIR_PIN PB10
- #define E0_ENABLE_PIN X_ENABLE_PIN
- //
- // Temperature Sensors
- //
- #define TEMP_0_PIN PA0 // TH1
- #define TEMP_BED_PIN PA1 // TB1
- //
- // Heaters / Fans
- //
- #define HEATER_BED_PIN PA2 // HOT BED
- #define FAN1_PIN PA8 // extruder fan
- #define HEATER_0_PIN PA3 // HEATER1
- //
- // Encoder pins
- //
- #if ENABLED(OLED_PANEL_TINYBOY2)
- #define BTN_EN1 PB12
- #define BTN_EN2 PB13
- #define BTN_ENC PB14
- #define BEEPER_PIN PC15
- #endif
- //
- // SD Card
- //
- #define ONBOARD_SPI_DEVICE 1
- // #define ONBOARD_SD_CS_PIN PA4 // SDSS
- #define SD_DETECT_PIN -1
- #define SDCARD_CONNECTION ONBOARD
- //#define ONBOARD_SDIO
- #define NO_SD_HOST_DRIVE // This board's SD is only seen by the printer
- #if SD_CONNECTION_IS(ONBOARD)
- #define SDSS PA4
- #define SD_SCK_PIN PA5
- #define SD_MISO_PIN PA6
- #define SD_MOSI_PIN PA7
- #endif
- // Pins for documentation and sanity checks only.
- // Changing these will not change the pin they are on.
- // Hardware UART pins
- #define UART1_TX_PIN PA9 // default uses CH340 RX
- #define UART1_RX_PIN PA10 // default uses CH340 TX
- #define UART2_TX_PIN PA2 // default uses HEATER_BED_PIN
- #define UART2_RX_PIN PA3 // not connected
- #define UART3_TX_PIN PB10 // default uses LCD connector
- #define UART3_RX_PIN PB11 // default uses LCD connector
- #define UART4_TX_PIN PC10 // default uses sdcard SDIO_D2
- #define UART4_RX_PIN PC11 // default uses sdcard SDIO_D3
- #define UART5_TX_PIN PC12 // default uses sdcard SDIO_CK
- #define UART5_RX_PIN PD2 // default uses sdcard SDIO_CMD
|