Skip to content

Commit

Permalink
PRINT:Add temperature alarm filtration treatment and Fix nozzle commu…
Browse files Browse the repository at this point in the history
…nication

Signed-off-by: winter.tian <winter.tian@anker-in.com>
  • Loading branch information
WinterAnker committed Mar 6, 2023
1 parent 0ad2dc7 commit b7e605e
Show file tree
Hide file tree
Showing 12 changed files with 279 additions and 329 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2170,8 +2170,8 @@
// @section 7serial

// The ASCII buffer for serial input
#define MAX_CMD_SIZE 96//96//300
#define BUFSIZE 256//128//64 256->384
#define MAX_CMD_SIZE 64//96//300
#define BUFSIZE 512//128//64 256->384

// Transmission to Host Buffer Size
// To save 386 bytes of PROGMEM (and TX_BUFFER_SIZE+3 bytes of RAM) set to 0.
Expand Down Expand Up @@ -2969,7 +2969,7 @@
//#define SPI_ENDSTOPS // TMC2130 only
#define IMPROVE_HOMING_RELIABILITY
#define X_STALL_CURRENT 450
#define Y_STALL_CURRENT 800
#define Y_STALL_CURRENT 900
#define Z_STALL_CURRENT 1200
#define Z2_STALL_CURRENT 1200
#if ENABLED(USE_Z_SENSORLESS)
Expand Down
2 changes: 1 addition & 1 deletion release_marlin2.0/maincode/Marlin/src/MarlinCore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -966,7 +966,7 @@ void kill(PGM_P const lcd_error/*=nullptr*/, PGM_P const lcd_component/*=nullptr
TERN_(HAS_TFT_LVGL_UI, lv_draw_error_message(lcd_error));

TERN_(ANKER_MAKE_API,SERIAL_ECHOLN(lcd_error));

#ifdef NOZZLE_BOARD_PWR_PIN
OUT_WRITE(NOZZLE_BOARD_PWR_PIN, !NOZZLE_BOARD_PWR_STATE);
#endif
Expand Down

0 comments on commit b7e605e

Please sign in to comment.