Merge pull request #3783 from leptun/enable_PRUSA_SN_all_variants
Allow "PRUSA SN" to print the SN in eeprom on all variants
This commit is contained in:
commit
40cc6dcb6d
|
|
@ -4283,7 +4283,6 @@ void process_commands()
|
|||
asm volatile("jmp 0x3E000");
|
||||
#endif
|
||||
}
|
||||
#ifdef PRUSA_SN_SUPPORT
|
||||
else if (code_seen_P(PSTR("SN"))) { // PRUSA SN
|
||||
char SN[20];
|
||||
eeprom_read_block(SN, (uint8_t*)EEPROM_PRUSA_SN, 20);
|
||||
|
|
@ -4292,7 +4291,6 @@ void process_commands()
|
|||
else
|
||||
puts(SN);
|
||||
}
|
||||
#endif //PRUSA_SN_SUPPORT
|
||||
else if(code_seen_P(PSTR("Fir"))){ // PRUSA Fir
|
||||
|
||||
SERIAL_PROTOCOLLNPGM(FW_VERSION_FULL);
|
||||
|
|
|
|||
Loading…
Reference in New Issue