2019-06-27 21:33:41 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2019-06-27 21:33:41 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2019-06-27 21:33:41 -05:00
|
|
|
*
|
|
|
|
* 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
|
2020-07-22 22:20:14 -05:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2019-06-27 21:33:41 -05:00
|
|
|
*
|
|
|
|
*/
|
2019-07-04 22:44:12 -05:00
|
|
|
#pragma once
|
2019-06-27 21:33:41 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MKS Robin nano (STM32F130VET6) board pin assignments
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __STM32F1__
|
|
|
|
#error "Oops! Select an STM32F1 board in 'Tools > Board.'"
|
2019-07-14 15:34:01 -05:00
|
|
|
#elif HOTENDS > 2 || E_STEPPERS > 2
|
2019-06-27 21:33:41 -05:00
|
|
|
#error "MKS Robin nano supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
|
|
|
#endif
|
|
|
|
|
2020-06-29 00:59:08 -05:00
|
|
|
#define BOARD_INFO_NAME "MKS Robin Nano"
|
2019-06-27 21:33:41 -05:00
|
|
|
|
|
|
|
//
|
|
|
|
// Release PB4 (Y_ENABLE_PIN) from JTAG NRST role
|
|
|
|
//
|
|
|
|
#define DISABLE_DEBUG
|
|
|
|
|
2020-04-16 03:53:58 -05:00
|
|
|
//
|
|
|
|
// EEPROM
|
|
|
|
//
|
2020-06-29 00:59:08 -05:00
|
|
|
#if EITHER(NO_EEPROM_SELECTED, FLASH_EEPROM_EMULATION)
|
|
|
|
#define FLASH_EEPROM_EMULATION
|
|
|
|
#define EEPROM_PAGE_SIZE (0x800U) // 2KB
|
|
|
|
#define EEPROM_START_ADDRESS (0x8000000UL + (STM32_FLASH_SIZE) * 1024UL - (EEPROM_PAGE_SIZE) * 2UL)
|
2020-07-25 00:52:07 -05:00
|
|
|
#define MARLIN_EEPROM_SIZE EEPROM_PAGE_SIZE // 2KB
|
2020-04-29 14:46:33 -05:00
|
|
|
#endif
|
2020-06-29 00:59:08 -05:00
|
|
|
|
2020-06-15 21:05:33 -05:00
|
|
|
#define ENABLE_SPI2
|
2020-04-16 03:53:58 -05:00
|
|
|
|
2019-06-27 21:33:41 -05:00
|
|
|
//
|
|
|
|
// Limit Switches
|
|
|
|
//
|
2020-03-21 21:13:19 -05:00
|
|
|
#define X_STOP_PIN PA15
|
|
|
|
#define Y_STOP_PIN PA12
|
|
|
|
#define Z_MIN_PIN PA11
|
|
|
|
#define Z_MAX_PIN PC4
|
2019-06-27 21:33:41 -05:00
|
|
|
|
2019-07-14 18:16:26 -05:00
|
|
|
#ifndef FIL_RUNOUT_PIN
|
2020-03-21 21:13:19 -05:00
|
|
|
#define FIL_RUNOUT_PIN PA4 // MT_DET
|
2019-07-14 18:16:26 -05:00
|
|
|
#endif
|
|
|
|
|
2019-06-27 21:33:41 -05:00
|
|
|
//
|
|
|
|
// Steppers
|
|
|
|
//
|
2020-03-21 21:13:19 -05:00
|
|
|
#define X_ENABLE_PIN PE4
|
|
|
|
#define X_STEP_PIN PE3
|
|
|
|
#define X_DIR_PIN PE2
|
2019-06-27 21:33:41 -05:00
|
|
|
|
2020-03-21 21:13:19 -05:00
|
|
|
#define Y_ENABLE_PIN PE1
|
|
|
|
#define Y_STEP_PIN PE0
|
|
|
|
#define Y_DIR_PIN PB9
|
2019-06-27 21:33:41 -05:00
|
|
|
|
2020-03-21 21:13:19 -05:00
|
|
|
#define Z_ENABLE_PIN PB8
|
|
|
|
#define Z_STEP_PIN PB5
|
|
|
|
#define Z_DIR_PIN PB4
|
2019-06-27 21:33:41 -05:00
|
|
|
|
2020-03-21 21:13:19 -05:00
|
|
|
#define E0_ENABLE_PIN PB3
|
|
|
|
#define E0_STEP_PIN PD6
|
|
|
|
#define E0_DIR_PIN PD3
|
2019-06-27 21:33:41 -05:00
|
|
|
|
2020-03-21 21:13:19 -05:00
|
|
|
#define E1_ENABLE_PIN PA3
|
|
|
|
#define E1_STEP_PIN PA6
|
|
|
|
#define E1_DIR_PIN PA1
|
2019-06-27 21:33:41 -05:00
|
|
|
|
|
|
|
//
|
|
|
|
// Temperature Sensors
|
|
|
|
//
|
2020-03-21 21:13:19 -05:00
|
|
|
#define TEMP_0_PIN PC1 // TH1
|
|
|
|
#define TEMP_1_PIN PC2 // TH2
|
|
|
|
#define TEMP_BED_PIN PC0 // TB1
|
2019-06-27 21:33:41 -05:00
|
|
|
|
|
|
|
//
|
|
|
|
// Heaters / Fans
|
|
|
|
//
|
2020-06-18 17:23:46 -05:00
|
|
|
#ifndef HEATER_0_PIN
|
|
|
|
#define HEATER_0_PIN PC3
|
|
|
|
#endif
|
|
|
|
#if HOTENDS == 1
|
|
|
|
#ifndef FAN1_PIN
|
|
|
|
#define FAN1_PIN PB0
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#ifndef HEATER_1_PIN
|
|
|
|
#define HEATER_1_PIN PB0
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef FAN_PIN
|
|
|
|
#define FAN_PIN PB1 // FAN
|
|
|
|
#endif
|
|
|
|
#ifndef HEATER_BED_PIN
|
|
|
|
#define HEATER_BED_PIN PA0
|
|
|
|
#endif
|
2019-06-27 21:33:41 -05:00
|
|
|
|
2019-07-14 18:16:26 -05:00
|
|
|
//
|
|
|
|
// Thermocouples
|
|
|
|
//
|
2020-03-21 21:13:19 -05:00
|
|
|
//#define MAX6675_SS_PIN PE5 // TC1 - CS1
|
|
|
|
//#define MAX6675_SS_PIN PE6 // TC2 - CS2
|
2019-06-27 21:33:41 -05:00
|
|
|
|
2019-07-14 18:16:26 -05:00
|
|
|
//
|
|
|
|
// Misc. Functions
|
|
|
|
//
|
2020-07-25 00:52:07 -05:00
|
|
|
#define POWER_LOSS_PIN PA2 // PW_DET
|
|
|
|
#define PS_ON_PIN PA3 // PW_OFF
|
2019-06-27 21:33:41 -05:00
|
|
|
|
2020-06-15 21:05:33 -05:00
|
|
|
//#define SUICIDE_PIN PB2 // Enable MKSPWC support ROBIN NANO v1.2 ONLY
|
|
|
|
//#define SUICIDE_PIN_INVERTING false
|
|
|
|
|
|
|
|
//#define KILL_PIN PA2 // Enable MKSPWC support ROBIN NANO v1.2 ONLY
|
|
|
|
//#define KILL_PIN_INVERTING true // Enable MKSPWC support ROBIN NANO v1.2 ONLY
|
|
|
|
|
2020-07-25 00:52:07 -05:00
|
|
|
#define SERVO0_PIN PA8 // Enable BLTOUCH support ROBIN NANO v1.2 ONLY
|
2020-06-15 21:05:33 -05:00
|
|
|
|
|
|
|
//#define LED_PIN PB2
|
|
|
|
|
|
|
|
#define MT_DET_1_PIN PA4
|
2020-07-25 00:52:07 -05:00
|
|
|
#define MT_DET_2_PIN PE6
|
2020-06-15 21:05:33 -05:00
|
|
|
#define MT_DET_PIN_INVERTING false
|
2019-06-27 21:33:41 -05:00
|
|
|
|
2020-07-25 00:52:07 -05:00
|
|
|
#define WIFI_IO0_PIN PC13
|
|
|
|
|
2019-12-10 23:29:33 -06:00
|
|
|
//
|
|
|
|
// SD Card
|
|
|
|
//
|
2020-04-16 03:53:58 -05:00
|
|
|
#ifndef SDCARD_CONNECTION
|
2020-06-18 17:23:46 -05:00
|
|
|
#define SDCARD_CONNECTION ONBOARD
|
2020-04-16 03:53:58 -05:00
|
|
|
#endif
|
|
|
|
|
2019-12-10 23:29:33 -06:00
|
|
|
#define SDIO_SUPPORT
|
2020-06-28 00:12:22 -05:00
|
|
|
#define SDIO_CLOCK 4500000 // 4.5 MHz
|
2020-03-21 21:13:19 -05:00
|
|
|
#define SD_DETECT_PIN PD12
|
2020-06-18 17:23:46 -05:00
|
|
|
#define ONBOARD_SD_CS_PIN PC11
|
2019-12-10 23:29:33 -06:00
|
|
|
|
2019-07-14 18:16:26 -05:00
|
|
|
//
|
|
|
|
// LCD / Controller
|
|
|
|
//
|
2020-03-21 21:13:19 -05:00
|
|
|
#define BEEPER_PIN PC5
|
2019-07-14 18:16:26 -05:00
|
|
|
|
2019-06-27 21:33:41 -05:00
|
|
|
/**
|
2019-07-14 18:05:24 -05:00
|
|
|
* Note: MKS Robin TFT screens use various TFT controllers.
|
|
|
|
* If the screen stays white, disable 'LCD_RESET_PIN'
|
|
|
|
* to let the bootloader init the screen.
|
2019-06-27 21:33:41 -05:00
|
|
|
*/
|
2020-06-15 21:05:33 -05:00
|
|
|
|
2020-08-03 23:41:23 -05:00
|
|
|
#if ENABLED(TFT_LVGL_UI_FSMC)
|
2020-06-15 21:05:33 -05:00
|
|
|
|
|
|
|
#define FSMC_CS_PIN PD7 // NE4
|
|
|
|
#define FSMC_RS_PIN PD11 // A0
|
|
|
|
|
|
|
|
#define TOUCH_CS_PIN PA7 // SPI2_NSS
|
|
|
|
#define TOUCH_SCK_PIN PB13 // SPI2_SCK
|
|
|
|
#define TOUCH_MISO_PIN PB14 // SPI2_MISO
|
|
|
|
#define TOUCH_MOSI_PIN PB15 // SPI2_MOSI
|
|
|
|
|
|
|
|
#define LCD_BACKLIGHT_PIN PD13
|
|
|
|
|
2020-08-03 23:41:23 -05:00
|
|
|
#elif ENABLED(FSMC_GRAPHICAL_TFT)
|
|
|
|
|
|
|
|
#define DOGLCD_MOSI -1 // prevent redefine Conditionals_post.h
|
|
|
|
#define DOGLCD_SCK -1
|
2020-07-25 00:52:07 -05:00
|
|
|
|
2020-08-03 23:41:23 -05:00
|
|
|
#ifndef FSMC_UPSCALE
|
|
|
|
#define FSMC_UPSCALE 3
|
|
|
|
#endif
|
|
|
|
#ifndef LCD_FULL_PIXEL_WIDTH
|
|
|
|
#define LCD_FULL_PIXEL_WIDTH 480
|
|
|
|
#endif
|
|
|
|
#ifndef LCD_PIXEL_OFFSET_X
|
|
|
|
#define LCD_PIXEL_OFFSET_X 48
|
|
|
|
#endif
|
|
|
|
#ifndef LCD_FULL_PIXEL_HEIGHT
|
|
|
|
#define LCD_FULL_PIXEL_HEIGHT 320
|
|
|
|
#endif
|
|
|
|
#ifndef LCD_PIXEL_OFFSET_Y
|
|
|
|
#define LCD_PIXEL_OFFSET_Y 32
|
|
|
|
#endif
|
2020-06-15 21:05:33 -05:00
|
|
|
|
2020-03-21 21:13:19 -05:00
|
|
|
#define FSMC_CS_PIN PD7 // NE4
|
|
|
|
#define FSMC_RS_PIN PD11 // A0
|
2019-08-06 03:23:26 -05:00
|
|
|
|
2020-08-03 23:41:23 -05:00
|
|
|
#define LCD_USE_DMA_FSMC // Use DMA transfers to send data to the TFT
|
|
|
|
#define FSMC_DMA_DEV DMA2
|
|
|
|
#define FSMC_DMA_CHANNEL DMA_CH5
|
|
|
|
|
2020-03-21 21:13:19 -05:00
|
|
|
#define LCD_RESET_PIN PC6 // FSMC_RST
|
|
|
|
#define LCD_BACKLIGHT_PIN PD13
|
2019-07-14 18:16:26 -05:00
|
|
|
|
2020-07-30 01:43:19 -05:00
|
|
|
#if NEED_TOUCH_PINS
|
2020-03-21 21:13:19 -05:00
|
|
|
#define TOUCH_CS_PIN PA7 // SPI2_NSS
|
|
|
|
#define TOUCH_SCK_PIN PB13 // SPI2_SCK
|
|
|
|
#define TOUCH_MISO_PIN PB14 // SPI2_MISO
|
|
|
|
#define TOUCH_MOSI_PIN PB15 // SPI2_MOSI
|
2019-07-14 18:16:26 -05:00
|
|
|
#endif
|
2020-06-15 21:05:33 -05:00
|
|
|
|
2020-08-08 00:32:30 -05:00
|
|
|
#elif ENABLED(TFT_480x320)
|
|
|
|
#define TFT_RESET_PIN PC6
|
|
|
|
#define TFT_BACKLIGHT_PIN PD13
|
|
|
|
|
|
|
|
#define LCD_USE_DMA_FSMC // Use DMA transfers to send data to the TFT
|
|
|
|
#define FSMC_CS_PIN PD7
|
|
|
|
#define FSMC_RS_PIN PD11
|
|
|
|
#define FSMC_DMA_DEV DMA2
|
|
|
|
#define FSMC_DMA_CHANNEL DMA_CH5
|
|
|
|
|
2020-08-08 18:45:34 -05:00
|
|
|
#define XPT2046_X_CALIBRATION 17880
|
|
|
|
#define XPT2046_Y_CALIBRATION -12234
|
|
|
|
#define XPT2046_X_OFFSET -45
|
|
|
|
#define XPT2046_Y_OFFSET 349
|
2020-08-08 00:32:30 -05:00
|
|
|
|
|
|
|
#define TOUCH_CS_PIN PA7 // SPI2_NSS
|
|
|
|
#define TOUCH_SCK_PIN PB13 // SPI2_SCK
|
|
|
|
#define TOUCH_MISO_PIN PB14 // SPI2_MISO
|
|
|
|
#define TOUCH_MOSI_PIN PB15 // SPI2_MOSI
|
|
|
|
|
|
|
|
#define TFT_DRIVER ILI9488
|
|
|
|
#define TFT_BUFFER_SIZE 14400
|
2020-08-08 18:45:34 -05:00
|
|
|
#define ILI9488_ORIENTATION ILI9488_MADCTL_MX | ILI9488_MADCTL_MV
|
2020-08-03 23:41:23 -05:00
|
|
|
#endif
|
2020-07-25 00:52:07 -05:00
|
|
|
|
2020-08-08 19:24:31 -05:00
|
|
|
#define HAS_SPI_FLASH 1
|
|
|
|
#define SPI_FLASH_SIZE 0x1000000 // 16MB
|
|
|
|
#if HAS_SPI_FLASH
|
2020-06-15 21:05:33 -05:00
|
|
|
#define W25QXX_CS_PIN PB12
|
|
|
|
#define W25QXX_MOSI_PIN PB15
|
|
|
|
#define W25QXX_MISO_PIN PB14
|
|
|
|
#define W25QXX_SCK_PIN PB13
|
2019-12-11 00:23:47 -06:00
|
|
|
#endif
|