Define HW serial ports needed for TMC UART (#21446)
This commit is contained in:
		@@ -106,16 +106,16 @@ uint16_t HAL_adc_get_result() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Forward the default serial ports
 | 
			
		||||
#if ANY_SERIAL_IS(0)
 | 
			
		||||
#if USING_HW_SERIAL0
 | 
			
		||||
  DefaultSerial1 MSerial0(false, Serial);
 | 
			
		||||
#endif
 | 
			
		||||
#if ANY_SERIAL_IS(1)
 | 
			
		||||
#if USING_HW_SERIAL1
 | 
			
		||||
  DefaultSerial2 MSerial1(false, Serial1);
 | 
			
		||||
#endif
 | 
			
		||||
#if ANY_SERIAL_IS(2)
 | 
			
		||||
#if USING_HW_SERIAL2
 | 
			
		||||
  DefaultSerial3 MSerial2(false, Serial2);
 | 
			
		||||
#endif
 | 
			
		||||
#if ANY_SERIAL_IS(3)
 | 
			
		||||
#if USING_HW_SERIAL3
 | 
			
		||||
  DefaultSerial4 MSerial3(false, Serial3);
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -140,7 +140,7 @@ struct MarlinSerialCfg {
 | 
			
		||||
  static constexpr bool MAX_RX_QUEUED     = ENABLED(SERIAL_STATS_MAX_RX_QUEUED);
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#if SERIAL_PORT >= 0
 | 
			
		||||
#if defined(SERIAL_PORT) && SERIAL_PORT >= 0
 | 
			
		||||
  typedef Serial1Class< MarlinSerial< MarlinSerialCfg<SERIAL_PORT> > > MSerialT;
 | 
			
		||||
  extern MSerialT customizedSerial1;
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -21,25 +21,26 @@
 | 
			
		||||
 */
 | 
			
		||||
#ifdef TARGET_LPC1768
 | 
			
		||||
 | 
			
		||||
#include "../../inc/MarlinConfigPre.h"
 | 
			
		||||
#include "MarlinSerial.h"
 | 
			
		||||
 | 
			
		||||
#if ANY_SERIAL_IS(0)
 | 
			
		||||
#include "../../inc/MarlinConfig.h"
 | 
			
		||||
 | 
			
		||||
#if USING_HW_SERIAL0
 | 
			
		||||
  MarlinSerial _MSerial(LPC_UART0);
 | 
			
		||||
  MSerialT MSerial0(true, _MSerial);
 | 
			
		||||
  extern "C" void UART0_IRQHandler() { _MSerial.IRQHandler(); }
 | 
			
		||||
#endif
 | 
			
		||||
#if ANY_SERIAL_IS(1)
 | 
			
		||||
#if USING_HW_SERIAL1
 | 
			
		||||
  MarlinSerial _MSerial1((LPC_UART_TypeDef *) LPC_UART1);
 | 
			
		||||
  MSerialT MSerial1(true, _MSerial1);
 | 
			
		||||
  extern "C" void UART1_IRQHandler() { _MSerial1.IRQHandler(); }
 | 
			
		||||
#endif
 | 
			
		||||
#if ANY_SERIAL_IS(2)
 | 
			
		||||
#if USING_HW_SERIAL2
 | 
			
		||||
  MarlinSerial _MSerial2(LPC_UART2);
 | 
			
		||||
  MSerialT MSerial2(true, _MSerial2);
 | 
			
		||||
  extern "C" void UART2_IRQHandler() { _MSerial2.IRQHandler(); }
 | 
			
		||||
#endif
 | 
			
		||||
#if ANY_SERIAL_IS(3)
 | 
			
		||||
#if USING_HW_SERIAL3
 | 
			
		||||
  MarlinSerial _MSerial3(LPC_UART3);
 | 
			
		||||
  MSerialT MSerial3(true, _MSerial3);
 | 
			
		||||
  extern "C" void UART3_IRQHandler() { _MSerial3.IRQHandler(); }
 | 
			
		||||
@@ -50,16 +51,16 @@
 | 
			
		||||
  bool MarlinSerial::recv_callback(const char c) {
 | 
			
		||||
    // Need to figure out which serial port we are and react in consequence (Marlin does not have CONTAINER_OF macro)
 | 
			
		||||
    if (false) {}
 | 
			
		||||
    #if ANY_SERIAL_IS(0)
 | 
			
		||||
    #if USING_HW_SERIAL0
 | 
			
		||||
      else if (this == &_MSerial) emergency_parser.update(MSerial0.emergency_state, c);
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ANY_SERIAL_IS(1)
 | 
			
		||||
    #if USING_HW_SERIAL1
 | 
			
		||||
      else if (this == &_MSerial1) emergency_parser.update(MSerial1.emergency_state, c);
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ANY_SERIAL_IS(2)
 | 
			
		||||
    #if USING_HW_SERIAL2
 | 
			
		||||
      else if (this == &_MSerial2) emergency_parser.update(MSerial2.emergency_state, c);
 | 
			
		||||
    #endif
 | 
			
		||||
    #if ANY_SERIAL_IS(3)
 | 
			
		||||
    #if USING_HW_SERIAL3
 | 
			
		||||
      else if (this == &_MSerial3) emergency_parser.update(MSerial3.emergency_state, c);
 | 
			
		||||
    #endif
 | 
			
		||||
    return true;
 | 
			
		||||
 
 | 
			
		||||
@@ -92,7 +92,7 @@ static_assert(DISABLED(BAUD_RATE_GCODE), "BAUD_RATE_GCODE is not yet supported o
 | 
			
		||||
#define ANY_TX(N,V...) DO(IS_TX##N,||,V)
 | 
			
		||||
#define ANY_RX(N,V...) DO(IS_RX##N,||,V)
 | 
			
		||||
 | 
			
		||||
#if ANY_SERIAL_IS(0)
 | 
			
		||||
#if USING_HW_SERIAL0
 | 
			
		||||
  #define IS_TX0(P) (P == P0_02)
 | 
			
		||||
  #define IS_RX0(P) (P == P0_03)
 | 
			
		||||
  #if IS_TX0(TMC_SW_MISO) || IS_RX0(TMC_SW_MOSI)
 | 
			
		||||
@@ -106,7 +106,7 @@ static_assert(DISABLED(BAUD_RATE_GCODE), "BAUD_RATE_GCODE is not yet supported o
 | 
			
		||||
  #undef IS_RX0
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if ANY_SERIAL_IS(1)
 | 
			
		||||
#if USING_HW_SERIAL1
 | 
			
		||||
  #define IS_TX1(P) (P == P0_15)
 | 
			
		||||
  #define IS_RX1(P) (P == P0_16)
 | 
			
		||||
  #define _IS_TX1_1 IS_TX1
 | 
			
		||||
@@ -127,7 +127,7 @@ static_assert(DISABLED(BAUD_RATE_GCODE), "BAUD_RATE_GCODE is not yet supported o
 | 
			
		||||
  #undef _IS_RX1_1
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if ANY_SERIAL_IS(2)
 | 
			
		||||
#if USING_HW_SERIAL2
 | 
			
		||||
  #define IS_TX2(P) (P == P0_10)
 | 
			
		||||
  #define IS_RX2(P) (P == P0_11)
 | 
			
		||||
  #define _IS_TX2_1 IS_TX2
 | 
			
		||||
@@ -161,7 +161,7 @@ static_assert(DISABLED(BAUD_RATE_GCODE), "BAUD_RATE_GCODE is not yet supported o
 | 
			
		||||
  #undef _IS_RX2_1
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if ANY_SERIAL_IS(3)
 | 
			
		||||
#if USING_HW_SERIAL3
 | 
			
		||||
  #define PIN_IS_TX3(P) (PIN_EXISTS(P) && P##_PIN == P0_00)
 | 
			
		||||
  #define PIN_IS_RX3(P) (P##_PIN == P0_01)
 | 
			
		||||
  #if PIN_IS_TX3(X_MIN) || PIN_IS_RX3(X_MAX)
 | 
			
		||||
 
 | 
			
		||||
@@ -25,19 +25,19 @@
 | 
			
		||||
#include <wiring_private.h>
 | 
			
		||||
 | 
			
		||||
#ifdef ADAFRUIT_GRAND_CENTRAL_M4
 | 
			
		||||
  #if ANY_SERIAL_IS(-1)
 | 
			
		||||
  #if USING_HW_SERIALUSB
 | 
			
		||||
    DefaultSerial1 MSerial0(false, Serial);
 | 
			
		||||
  #endif
 | 
			
		||||
  #if ANY_SERIAL_IS(0)
 | 
			
		||||
  #if USING_HW_SERIAL0
 | 
			
		||||
    DefaultSerial2 MSerial1(false, Serial1);
 | 
			
		||||
  #endif
 | 
			
		||||
  #if ANY_SERIAL_IS(1)
 | 
			
		||||
  #if USING_HW_SERIAL1
 | 
			
		||||
    DefaultSerial3 MSerial2(false, Serial2);
 | 
			
		||||
  #endif
 | 
			
		||||
  #if ANY_SERIAL_IS(2)
 | 
			
		||||
  #if USING_HW_SERIAL2
 | 
			
		||||
    DefaultSerial4 MSerial3(false, Serial3);
 | 
			
		||||
  #endif
 | 
			
		||||
  #if ANY_SERIAL_IS(3)
 | 
			
		||||
  #if USING_HW_SERIAL3
 | 
			
		||||
    DefaultSerial5 MSerial4(false, Serial4);
 | 
			
		||||
  #endif
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
@@ -27,7 +27,7 @@
 | 
			
		||||
 | 
			
		||||
#include "../../inc/MarlinConfig.h"
 | 
			
		||||
 | 
			
		||||
#if ANY_SERIAL_IS(1)
 | 
			
		||||
#if USING_HW_SERIAL1
 | 
			
		||||
  UartT Serial2(false, &sercom4, PIN_SERIAL2_RX, PIN_SERIAL2_TX, PAD_SERIAL2_RX, PAD_SERIAL2_TX);
 | 
			
		||||
  void SERCOM4_0_Handler() { Serial2.IrqHandler(); }
 | 
			
		||||
  void SERCOM4_1_Handler() { Serial2.IrqHandler(); }
 | 
			
		||||
@@ -35,7 +35,7 @@
 | 
			
		||||
  void SERCOM4_3_Handler() { Serial2.IrqHandler(); }
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if ANY_SERIAL_IS(2)
 | 
			
		||||
#if USING_HW_SERIAL2
 | 
			
		||||
  UartT Serial3(false, &sercom1, PIN_SERIAL3_RX, PIN_SERIAL3_TX, PAD_SERIAL3_RX, PAD_SERIAL3_TX);
 | 
			
		||||
  void SERCOM1_0_Handler() { Serial3.IrqHandler(); }
 | 
			
		||||
  void SERCOM1_1_Handler() { Serial3.IrqHandler(); }
 | 
			
		||||
@@ -43,7 +43,7 @@
 | 
			
		||||
  void SERCOM1_3_Handler() { Serial3.IrqHandler(); }
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if ANY_SERIAL_IS(3)
 | 
			
		||||
#if USING_HW_SERIAL3
 | 
			
		||||
  UartT Serial4(false, &sercom5, PIN_SERIAL4_RX, PIN_SERIAL4_TX, PAD_SERIAL4_RX, PAD_SERIAL4_TX);
 | 
			
		||||
  void SERCOM5_0_Handler() { Serial4.IrqHandler(); }
 | 
			
		||||
  void SERCOM5_1_Handler() { Serial4.IrqHandler(); }
 | 
			
		||||
 
 | 
			
		||||
@@ -28,7 +28,6 @@
 | 
			
		||||
#ifndef USART4
 | 
			
		||||
  #define USART4 UART4
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#ifndef USART5
 | 
			
		||||
  #define USART5 UART5
 | 
			
		||||
#endif
 | 
			
		||||
@@ -43,15 +42,12 @@
 | 
			
		||||
#if defined(SERIAL_PORT) && SERIAL_PORT >= 0
 | 
			
		||||
  DECLARE_SERIAL_PORT_EXP(SERIAL_PORT)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if defined(SERIAL_PORT_2) && SERIAL_PORT_2 >= 0
 | 
			
		||||
  DECLARE_SERIAL_PORT_EXP(SERIAL_PORT_2)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if defined(MMU2_SERIAL_PORT) && MMU2_SERIAL_PORT >= 0
 | 
			
		||||
  DECLARE_SERIAL_PORT_EXP(MMU2_SERIAL_PORT)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if defined(LCD_SERIAL_PORT) && LCD_SERIAL_PORT >= 0
 | 
			
		||||
  DECLARE_SERIAL_PORT_EXP(LCD_SERIAL_PORT)
 | 
			
		||||
#endif
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user