Merge pull request #2584 from 3d-gussner/MK3_Dcodes_fix1

🐛 Bugfix for DEBUG version
This commit is contained in:
DRracer 2020-04-14 10:07:48 +02:00 committed by GitHub
commit 66ffb8489a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -6,13 +6,13 @@ extern void dcode_0(); //D0 - Reset
extern void dcode_1(); //D1 - Clear EEPROM
extern void dcode_2(); //D2 - Read/Write RAM
#ifdef DEBUG_DCODE3
#if defined DEBUG_DCODE3 || defined DEBUG_DCODES
extern void dcode_3(); //D3 - Read/Write EEPROM
#endif //DEBUG_DCODE3
extern void dcode_4(); //D4 - Read/Write PIN
#ifdef DEBUG_DCODE5
#if defined DEBUG_DCODE5 || defined DEBUG_DCODES
extern void dcode_5(); //D5 - Read/Write FLASH
#endif //DEBUG_DCODE5

View File

@ -8901,7 +8901,6 @@ Sigma_Exit:
*/
case 5:
dcode_5(); break;
break;
#endif //DEBUG_DCODE5
#ifdef DEBUG_DCODES