change #include "svf.h" to <svf/svf.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "svf.h" the following form should be used. #include <svf/svf.h> The exception is from .c files in the same directory.__archive__
parent
49675db972
commit
66e45ba611
|
@ -26,7 +26,7 @@
|
||||||
#include <helper/ioutil.h>
|
#include <helper/ioutil.h>
|
||||||
#include <helper/configuration.h>
|
#include <helper/configuration.h>
|
||||||
#include "xsvf.h"
|
#include "xsvf.h"
|
||||||
#include "svf.h"
|
#include <svf/svf.h>
|
||||||
#include <flash/nand.h>
|
#include <flash/nand.h>
|
||||||
#include <pld/pld.h>
|
#include <pld/pld.h>
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
#include <helper/ioutil.h>
|
#include <helper/ioutil.h>
|
||||||
#include <helper/configuration.h>
|
#include <helper/configuration.h>
|
||||||
#include "xsvf.h"
|
#include "xsvf.h"
|
||||||
#include "svf.h"
|
#include <svf/svf.h>
|
||||||
#include <flash/nand.h>
|
#include <flash/nand.h>
|
||||||
#include <pld/pld.h>
|
#include <pld/pld.h>
|
||||||
#include <flash/mflash.h>
|
#include <flash/mflash.h>
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
|
|
||||||
#include "xsvf.h"
|
#include "xsvf.h"
|
||||||
#include <jtag/jtag.h>
|
#include <jtag/jtag.h>
|
||||||
#include "svf.h"
|
#include <svf/svf.h>
|
||||||
|
|
||||||
|
|
||||||
/* XSVF commands, from appendix B of xapp503.pdf */
|
/* XSVF commands, from appendix B of xapp503.pdf */
|
||||||
|
|
Loading…
Reference in New Issue