Merge pull request #1319 from XPila/V3_5

Fix PFW651 - cannot upload MK3 languages with slic3r (firmware compil…
This commit is contained in:
PavelSindler 2018-11-09 13:10:51 +01:00 committed by GitHub
commit 5f166374ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,7 +130,7 @@ void optiboot_w25x20cl_enter()
}
// Send the initial magic string.
while (ptr != end)
putch(pgm_read_byte_far(ptr ++));
putch(pgm_read_byte(ptr ++));
watchdogReset();
// Wait for one second until a magic string (constant entry_magic) is received
// from the serial line.
@ -145,7 +145,7 @@ void optiboot_w25x20cl_enter()
return;
}
ch = UDR0;
if (pgm_read_byte_far(ptr ++) != ch)
if (pgm_read_byte(ptr ++) != ch)
// Magic was not received correctly, continue with the application
return;
watchdogReset();
@ -153,7 +153,7 @@ void optiboot_w25x20cl_enter()
// Send the cfm magic string.
ptr = entry_magic_cfm;
while (ptr != end)
putch(pgm_read_byte_far(ptr ++));
putch(pgm_read_byte(ptr ++));
}
spi_init();