Increase required MMU FW version to 3.0.1
This commit is contained in:
parent
ef63b57dfd
commit
d2991ce1e0
|
|
@ -281,7 +281,7 @@ static const char MSG_DESC_FILAMENT_EJECTED[] PROGMEM_I1 = ISTR("Remove the ejec
|
|||
static const char MSG_DESC_UNKNOWN_ERROR[] PROGMEM_I1 = ISTR("Unexpected error occurred."); ////MSG_DESC_UNKNOWN_ERROR c=20 r=8
|
||||
|
||||
// Read explanation in mmu2_protocol_logic.cpp -> supportedMmuFWVersion
|
||||
static constexpr char MSG_DESC_FW_UPDATE_NEEDED[] PROGMEM_I1 = ISTR("MMU FW version is incompatible with printer FW.Update to version 3.0.0."); ////MSG_DESC_FW_UPDATE_NEEDED c=20 r=8
|
||||
static constexpr char MSG_DESC_FW_UPDATE_NEEDED[] PROGMEM_I1 = ISTR("MMU FW version is incompatible with printer FW.Update to version 3.0.1."); ////MSG_DESC_FW_UPDATE_NEEDED c=20 r=8
|
||||
static constexpr uint8_t szFWUN = sizeof(MSG_DESC_FW_UPDATE_NEEDED);
|
||||
// at least check the individual version characters in MSG_DESC_FW_UPDATE_NEEDED
|
||||
static_assert(MSG_DESC_FW_UPDATE_NEEDED[szFWUN - 7] == ('0' + mmuVersionMajor));
|
||||
|
|
|
|||
|
|
@ -5,6 +5,6 @@ namespace MMU2 {
|
|||
|
||||
static constexpr uint8_t mmuVersionMajor = 3;
|
||||
static constexpr uint8_t mmuVersionMinor = 0;
|
||||
static constexpr uint8_t mmuVersionPatch = 0;
|
||||
static constexpr uint8_t mmuVersionPatch = 1;
|
||||
|
||||
} // namespace MMU2
|
||||
|
|
|
|||
Loading…
Reference in New Issue