Final build issues with example app resolved after move to conf.h

This commit is contained in:
xross
2017-10-31 16:16:40 +00:00
parent 420150f737
commit d14275e9e4
2 changed files with 4 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
Warnings relating to configuration defines located in this XC source file rather than the devicedefines.h header file in order to avoid multiple warnings being issued when the devicedefines.h header file is included in multiple files.
*/
#include "xua_conf_default.h"
#include "xua_conf_full.h"
#ifndef NO_USB

View File

@@ -4,6 +4,8 @@
#include <string.h>
#include <xclib.h>
#if (XUA_DFU_EN == 1)
/* Defines flash area to erase on first DFU download request received
*
* Flash library will round it up to the nearest sector, e.g. 4KB
@@ -245,4 +247,5 @@ int flash_cmd_erase_all(void)
}
return 0;
}
#endif