Update copyright in header, etc. (#14645)
This commit is contained in:
parent
5535a047d7
commit
abc9b52692
6 changed files with 77 additions and 64 deletions
|
@ -304,9 +304,14 @@
|
|||
#endif
|
||||
|
||||
#if MB(MKS_SBASE) && HAS_TMC220x
|
||||
// The shortage of pins becomes apparent.
|
||||
// Worst case you may have to give up the LCD
|
||||
// RX pins need to be interrupt capable
|
||||
|
||||
/**
|
||||
* TMC2208/TMC2209 stepper drivers
|
||||
*
|
||||
* The shortage of pins becomes apparent.
|
||||
* Worst case you may have to give up the LCD
|
||||
* RX pins need to be interrupt capable
|
||||
*/
|
||||
#define X_SERIAL_TX_PIN P1_22 // J8-2
|
||||
#define X_SERIAL_RX_PIN P2_12 // J8-4 Interrupt Capable
|
||||
#define Y_SERIAL_TX_PIN P1_23 // J8-3
|
||||
|
|
|
@ -110,7 +110,7 @@
|
|||
|
||||
#if HAS_TMC220x
|
||||
/**
|
||||
* TMC2208 stepper drivers
|
||||
* TMC2208/TMC2209 stepper drivers
|
||||
*
|
||||
* Hardware serial communication ports.
|
||||
* If undefined software serial is used according to the pins below
|
||||
|
|
|
@ -121,9 +121,9 @@
|
|||
* If undefined software serial is used according to the pins below
|
||||
*/
|
||||
|
||||
/**
|
||||
* Software serial
|
||||
*/
|
||||
//
|
||||
// Software serial
|
||||
//
|
||||
|
||||
// P2_08 E1-Step
|
||||
// P2_13 E1-Dir
|
||||
|
|
|
@ -44,9 +44,13 @@
|
|||
//#define BTN_EN2 P1_22 // EXP2.3
|
||||
|
||||
#if HAS_TMC220x
|
||||
// The shortage of pins becomes apparent.
|
||||
// In the worst case you may have to give up the LCD.
|
||||
// RX pins must be interrupt-capable.
|
||||
/**
|
||||
* TMC2208/TMC2209 stepper drivers
|
||||
*
|
||||
* The shortage of pins becomes apparent.
|
||||
* In the worst case you may have to give up the LCD.
|
||||
* RX pins must be interrupt-capable.
|
||||
*/
|
||||
#define X_SERIAL_TX_PIN P4_29 // J8-2
|
||||
#define X_SERIAL_RX_PIN P4_29 // J8-2
|
||||
|
||||
|
|
|
@ -118,8 +118,12 @@
|
|||
//
|
||||
|
||||
#if HAS_TMC220x
|
||||
// Software serial
|
||||
// At the moment, F6 rx pins are not pc interrupt pins
|
||||
/**
|
||||
* TMC2208/TMC2209 stepper drivers
|
||||
*
|
||||
* Software serial communication pins.
|
||||
* At the moment, F6 rx pins are not pc interrupt pins
|
||||
*/
|
||||
#define X_SERIAL_RX_PIN -1 // 71
|
||||
#define X_SERIAL_TX_PIN 72
|
||||
#define Y_SERIAL_RX_PIN -1 // 73
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
/**
|
||||
* Marlin 3D Printer Firmware
|
||||
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
||||
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
||||
*
|
||||
* Based on Sprinter and grbl.
|
||||
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
||||
* 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
|
||||
|
@ -99,9 +99,9 @@
|
|||
#define E4_ENABLE_PIN 47
|
||||
#define E4_CS_PIN E0_CS_PIN
|
||||
|
||||
#if ENABLED(HAVE_TMC2208)
|
||||
#if HAS_TMC220x
|
||||
/**
|
||||
* TMC2208 stepper drivers
|
||||
* TMC2208/TMC2209 stepper drivers
|
||||
*
|
||||
* Hardware serial communication ports.
|
||||
* If undefined software serial is used according to the pins below
|
||||
|
|
Reference in a new issue