Understanding octoprints terminal output

Hello, I am new to this forum and have searched extensively but cannot find how to interpret the output in the terminal window of octoprint. The gcode file that is used has commands like "G28 X0 Y0", but the terminal window shows: "Send: N43823 G28 X0 Y0*28".
I understand that the Nx part is the command number, then the command itself but what is the meaning of the *28 at the end?
Just curious. Thanks

Hello @Jan_Gerene!

The N43823 and the *28 both belong to the Gcode transfer protocol

  1. The line number Naaaa to keep track of the line, if a line is not received properly by the printer
  2. And the Checksum *bbb to check if the line was received correct.

More to this here:
https://www.reprap.org/wiki/G-code#Special_fields
Further information here:
https://www.reprap.org/wiki/G-code#Replies_from_the_RepRap_machine_to_the_host_computer

1 Like

Thanks for the information! Now it makes sense to me. Also thanks for the links about the communication protocol. This was just the information I was looking for.

1 Like