From 195ce6197ed2e33f8b29cd38a58d652857fdc13b Mon Sep 17 00:00:00 2001 From: Ross Owen Date: Mon, 20 Jul 2015 11:39:01 +0100 Subject: [PATCH] Fixed DFU flag address to properly conform to memory address range allocated by tools for apps --- module_dfu/src/dfu.xc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module_dfu/src/dfu.xc b/module_dfu/src/dfu.xc index ce7f1576..559842be 100644 --- a/module_dfu/src/dfu.xc +++ b/module_dfu/src/dfu.xc @@ -13,10 +13,10 @@ #if (XUD_SERIES_SUPPORT==4) /* xCORE-200 */ /* Note range 0x7FFC8 - 0x7FFFF guarenteed to be untouched by tools */ -#define FLAG_ADDRESS 0x7ffc4 +#define FLAG_ADDRESS 0x7ffcc #else /* Note range 0x1FFC8 - 0x1FFFF guarenteed to be untouched by tools */ -#define FLAG_ADDRESS 0x1ffc4 +#define FLAG_ADDRESS 0x1ffcc #endif /* Store Flag to fixed address */