Skip to content

Commit

Permalink
Screen firmware source code upload
Browse files Browse the repository at this point in the history
Additionally:
- z_values output to serial not needed so deactivated
- home offset serial output only in debug mode
  • Loading branch information
ThomasToka committed Jul 15, 2023
1 parent 6c62210 commit 5e86301
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Marlin/src/lcd/rts/e3s1pro/lcd_rts.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ void RTSSHOW::RTS_Init(void)
zig ^= true;
for (int x = inStart; x != inStop; x += inInc)
{
SERIAL_ECHOLNPGM("value: ", bedlevel.z_values[x][y] * 1000);
//SERIAL_ECHOLNPGM("value: ", bedlevel.z_values[x][y] * 1000);
RTS_SndData(bedlevel.z_values[x][y] * 1000, AUTO_BED_LEVEL_1POINT_NEW_VP + showcount * 2);
showcount++;
}
Expand Down Expand Up @@ -3533,8 +3533,9 @@ void RTSSHOW::RTS_HandleData(void)

#if ENABLED(FILAMENT_RUNOUT_SENSOR_DEBUG)
SERIAL_ECHO_MSG("home_offset_x_temp\n", home_offset_x_temp);
#endif
SERIAL_ECHOLNPGM("home_offset_x_temp enterkey: ", home_offset_x_temp);
#endif

//SERIAL_ECHOLNPGM("x_min_pos_eeprom_temp enterkey: ", x_min_pos_eeprom_temp);
//BL24CXX::writeOneByte(x_min_pos_eeprom, x_min_pos_eeprom_temp);
//if (x_min_pos_eeprom_temp == 1) {
Expand All @@ -3560,8 +3561,8 @@ void RTSSHOW::RTS_HandleData(void)
home_offset.y = home_offset_y_temp;
#if ENABLED(FILAMENT_RUNOUT_SENSOR_DEBUG)
SERIAL_ECHO_MSG("home_offset_y_temp\n", home_offset_y_temp);
#endif
SERIAL_ECHOLNPGM("home_offset_y_temp enterkey: ", home_offset_y_temp);
#endif
//SERIAL_ECHOLNPGM("y_min_pos_eeprom_temp enterkey: ", y_min_pos_eeprom_temp);
//BL24CXX::writeOneByte(y_min_pos_eeprom, y_min_pos_eeprom_temp);
//if (y_min_pos_eeprom_temp == 1) {
Expand Down
Binary file not shown.
Binary file not shown.

0 comments on commit 5e86301

Please sign in to comment.