diff options
-rw-r--r-- | .gitignore | 19 | ||||
-rw-r--r-- | image_header.h | 2 | ||||
-rw-r--r-- | o3000.c | 4 | ||||
-rw-r--r-- | o3000.h | 4 | ||||
-rw-r--r-- | o3000_private.h | 4 | ||||
-rw-r--r-- | o3000_xfer_handler.c | 2 | ||||
-rw-r--r-- | o3000_xfer_handler.h | 2 |
7 files changed, 28 insertions, 9 deletions
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
@@ -236,9 +236,9 @@ or a transfer may contain several frames. #include <stdlib.h> #include <stdarg.h> -#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" @@ -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 <libusb-1.0/libusb.h> -#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 <string.h>
-#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); |