diff --git a/Firmware/Dcodes.cpp b/Firmware/Dcodes.cpp
index 67cf1eb80..f943b4a31 100644
--- a/Firmware/Dcodes.cpp
+++ b/Firmware/Dcodes.cpp
@@ -98,7 +98,7 @@ void print_mem(uint32_t address, uint16_t count, uint8_t type, uint8_t countperl
}
}
-#ifdef DEBUG_DCODE3
+#if defined DEBUG_DCODE3 || defined DEBUG_DCODES
#define EEPROM_SIZE 0x1000
/*!
### D3 - Read/Write EEPROM D3: Read/Write EEPROM
@@ -360,7 +360,7 @@ void dcode_4()
}
#endif //DEBUG_DCODES
-#ifdef DEBUG_DCODE5
+#if defined DEBUG_DCODE5 || defined DEBUG_DCODES
/*!
### D5 - Read/Write FLASH D5: Read/Write Flash
@@ -372,7 +372,7 @@ void dcode_4()
#### Parameters
- `A` - Address (x00000-x3ffff)
- `C` - Count (1-8192)
- - `X` - Data
+ - `X` - Data (hex)
- `E` - Erase
#### Notes
diff --git a/Firmware/Marlin_main.cpp b/Firmware/Marlin_main.cpp
index ad5a1a85c..a6becaa66 100755
--- a/Firmware/Marlin_main.cpp
+++ b/Firmware/Marlin_main.cpp
@@ -8835,7 +8835,7 @@ Sigma_Exit:
case 2:
dcode_2(); break;
#endif //DEBUG_DCODES
-#ifdef DEBUG_DCODE3
+#if defined DEBUG_DCODE3 || defined DEBUG_DCODES
/*!
### D3 - Read/Write EEPROM D3: Read/Write EEPROM
@@ -8876,7 +8876,7 @@ Sigma_Exit:
case 4:
dcode_4(); break;
#endif //DEBUG_DCODES
-#ifdef DEBUG_DCODE5
+#if defined DEBUG_DCODE5 || defined DEBUG_DCODES
/*!
### D5 - Read/Write FLASH D5: Read/Write Flash
@@ -8888,7 +8888,7 @@ Sigma_Exit:
#### Parameters
- `A` - Address (x00000-x3ffff)
- `C` - Count (1-8192)
- - `X` - Data
+ - `X` - Data (hex)
- `E` - Erase
#### Notes