소스 검색

fpga: Make it explicit that MaxSLiCInterface.h comes from the system

Samuel Thibault 4 년 전
부모
커밋
311c2b8d9d
4개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      tests/fpga/max_fpga_advanced_static.c
  2. 1 1
      tests/fpga/max_fpga_basic_static.c
  3. 1 1
      tests/fpga/max_fpga_dynamic.c
  4. 1 1
      tests/fpga/max_fpga_mux.c

+ 1 - 1
tests/fpga/max_fpga_advanced_static.c

@@ -20,7 +20,7 @@
 #include "../helper.h"
 
 #include "MyTasks.h"
-#include "MaxSLiCInterface.h"
+#include <MaxSLiCInterface.h>
 #define SIZE (192/sizeof(int32_t))
 
 static max_file_t *maxfile;

+ 1 - 1
tests/fpga/max_fpga_basic_static.c

@@ -20,7 +20,7 @@
 #include "../helper.h"
 
 #include "MyTasks.h"
-#include "MaxSLiCInterface.h"
+#include <MaxSLiCInterface.h>
 #define SIZE (192/sizeof(int32_t))
 
 void fpga_impl(void *buffers[], void *cl_arg)

+ 1 - 1
tests/fpga/max_fpga_dynamic.c

@@ -20,7 +20,7 @@
 #include "../helper.h"
 
 #include "MyTasks.h"
-#include "MaxSLiCInterface.h"
+#include <MaxSLiCInterface.h>
 #define SIZE (192/sizeof(int32_t))
 
 static max_file_t *maxfile;

+ 1 - 1
tests/fpga/max_fpga_mux.c

@@ -20,7 +20,7 @@
 #include "../helper.h"
 
 #include "MyTasksMux.h"
-#include "MaxSLiCInterface.h"
+#include <MaxSLiCInterface.h>
 #define SIZE (192/sizeof(int32_t))
 
 static max_file_t *maxfile;