mirror of https://github.com/rusefi/openblt.git
- Moved #include "xcp.h" from boot.h to com.h" to resolve compile error for missing include, when using only the file system and no communication interfaces.
git-svn-id: https://svn.code.sf.net/p/openblt/code/trunk@126 5dc33758-31d5-4daf-9ae8-b24bf3d40d73
This commit is contained in:
parent
590809ca28
commit
e4379d241a
|
@ -68,7 +68,6 @@
|
|||
#include "backdoor.h" /* backdoor entry module */
|
||||
#include "file.h" /* file system module */
|
||||
#include "com.h" /* communication interface */
|
||||
#include "xcp.h" /* xcp communication layer */
|
||||
|
||||
|
||||
/****************************************************************************************
|
||||
|
|
|
@ -34,6 +34,12 @@
|
|||
#define COM_H
|
||||
|
||||
#if (BOOT_COM_ENABLE > 0)
|
||||
/****************************************************************************************
|
||||
* Include files
|
||||
****************************************************************************************/
|
||||
#include "xcp.h" /* xcp communication layer */
|
||||
|
||||
|
||||
/****************************************************************************************
|
||||
* Macro definitions
|
||||
****************************************************************************************/
|
||||
|
|
Loading…
Reference in New Issue