Resend Request changed from "Resend:" to "rs "
As of reprap-mendel-20100806, the RepRap java host expects resend requests using the new "rs " format only, the version before this only excepted "Resend:" Repsnapper as of SVN 348 accepts both formats. Also fixed typo in config.h.dist Signed-off-by: Michael Moon <triffid.hunter@gmail.com>
This commit is contained in:
parent
e3d0aa7b62
commit
77a4e1d7f1
|
|
@ -174,7 +174,7 @@
|
|||
* list of PWM-able pins and corresponding timers
|
||||
* timer1 is used for step timing so don't use OC1A/OC1B
|
||||
*
|
||||
* For Arudino Diecimila/Duemilanove/UNO
|
||||
* For Arduino Diecimila/Duemilanove/UNO
|
||||
* Don't use OC1A/OC1B (DIO9/DIO10)
|
||||
*
|
||||
* OC0A DIO6
|
||||
|
|
|
|||
2
gcode.c
2
gcode.c
|
|
@ -784,7 +784,7 @@ void process_gcode_command(GCODE_COMMAND *gcmd) {
|
|||
****************************************************************************/
|
||||
|
||||
void request_resend(void) {
|
||||
serial_writestr_P(PSTR("Resend:"));
|
||||
serial_writestr_P(PSTR("rs "));
|
||||
serwrite_uint8(next_target.N);
|
||||
serial_writechar('\n');
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue