Move "xflash" include inside the conditional

This commit is contained in:
Yuri D'Elia 2021-06-08 15:18:33 +02:00
parent 0fcdada579
commit af636c7f2a

View File

@ -3,7 +3,6 @@
#include "Configuration.h"
#include "language.h"
#include "cmdqueue.h"
#include "xflash.h"
#include <stdio.h>
#include <avr/pgmspace.h>
@ -26,6 +25,8 @@ void print_hex_byte(uint8_t val)
// debug range address type (fits all SRAM/PROGMEM/XFLASH memory ranges)
#if defined(DEBUG_DCODE6) || defined(DEBUG_DCODES)
#include "xflash.h"
#define DADDR_SIZE 32
typedef uint32_t daddr_t; // XFLASH requires 24 bits
#else