From a8efd27cd5aee8e77638190fa620a39e1c54492a Mon Sep 17 00:00:00 2001 From: Patrick Roth Date: Fri, 18 Oct 2019 14:16:00 +0200 Subject: wrong include paths for o-3000 header files --- .gitignore | 19 +++++++++++++++++++ image_header.h | 2 +- o3000.c | 4 ++-- o3000.h | 4 ++-- o3000_private.h | 4 ++-- o3000_xfer_handler.c | 2 +- o3000_xfer_handler.h | 2 +- 7 files changed, 28 insertions(+), 9 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bc5c50b --- /dev/null +++ b/.gitignore @@ -0,0 +1,19 @@ +# binaries +*.asm +*.bin +*.elf +*.map + +# object files +*.o + +#csv files +*.csv + +#doxygen docu +html/ + +# tags +tags + +build/ diff --git a/image_header.h b/image_header.h index dd752e7..b4eb2fc 100644 --- a/image_header.h +++ b/image_header.h @@ -31,7 +31,7 @@ #ifndef _IMAGE_HEADER_H #define _IMAGE_HEADER_H -#include "o3000/o3000_portable.h" +#include "o3000_portable.h" #define O3000_IMG_HEADER_VERSION 4 ///< O-3000 image header version diff --git a/o3000.c b/o3000.c index 1ad5676..16b355f 100644 --- a/o3000.c +++ b/o3000.c @@ -236,9 +236,9 @@ or a transfer may contain several frames. #include #include -#include "o3000/o3000_portable.h" +#include "o3000_portable.h" #include "o3000_private.h" -#include "o3000/o3000.h" +#include "o3000.h" #include "o3000_xfer_handler.h" diff --git a/o3000.h b/o3000.h index b13b767..8b297a6 100644 --- a/o3000.h +++ b/o3000.h @@ -30,8 +30,8 @@ #ifndef _O3000_H #define _O3000_H -#include "o3000/o3000_portable.h" -#include "o3000/image_header.h" +#include "o3000_portable.h" +#include "image_header.h" /** * O-3000 library version diff --git a/o3000_private.h b/o3000_private.h index 7087d46..d6e3490 100644 --- a/o3000_private.h +++ b/o3000_private.h @@ -32,8 +32,8 @@ #define __O3000_PRIVATE_H #include -#include "o3000/o3000_portable.h" -#include "o3000/image_header.h" +#include "o3000_portable.h" +#include "image_header.h" #define TRUE 1 ///< TRUE value (not 0) diff --git a/o3000_xfer_handler.c b/o3000_xfer_handler.c index 4ae8b2f..0d3897b 100644 --- a/o3000_xfer_handler.c +++ b/o3000_xfer_handler.c @@ -30,7 +30,7 @@ #include -#include "o3000/o3000.h" +#include "o3000.h" #include "o3000_private.h" diff --git a/o3000_xfer_handler.h b/o3000_xfer_handler.h index 09fdb3b..32dd6e9 100644 --- a/o3000_xfer_handler.h +++ b/o3000_xfer_handler.h @@ -31,7 +31,7 @@ #ifndef __O3000_XFER_HANDLER_H #define __O3000_XFER_HANDLER_H -#include "o3000/o3000_portable.h" +#include "o3000_portable.h" #include "o3000_private.h" void handle_transfer(struct o3000_session_t *session, uint8_t *addr, int len); -- cgit v1.2.1