change #include "armv7m.h" to <target/armv7m.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "armv7m.h" the following form should be used. #include <target/armv7m.h> The exception is from .c files in the same directory.__archive__
parent
a1c40f5120
commit
f52a596860
|
@ -26,7 +26,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "lpc2000.h"
|
#include "lpc2000.h"
|
||||||
#include "armv7m.h"
|
#include <target/armv7m.h>
|
||||||
#include <helper/binarybuffer.h>
|
#include <helper/binarybuffer.h>
|
||||||
#include <target/algorithm.h>
|
#include <target/algorithm.h>
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "stellaris.h"
|
#include "stellaris.h"
|
||||||
#include "armv7m.h"
|
#include <target/armv7m.h>
|
||||||
#include <helper/binarybuffer.h>
|
#include <helper/binarybuffer.h>
|
||||||
#include <target/algorithm.h>
|
#include <target/algorithm.h>
|
||||||
|
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "stm32x.h"
|
#include "stm32x.h"
|
||||||
#include "armv7m.h"
|
#include <target/armv7m.h>
|
||||||
#include <helper/binarybuffer.h>
|
#include <helper/binarybuffer.h>
|
||||||
#include <target/algorithm.h>
|
#include <target/algorithm.h>
|
||||||
|
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#ifndef CORTEX_M3_H
|
#ifndef CORTEX_M3_H
|
||||||
#define CORTEX_M3_H
|
#define CORTEX_M3_H
|
||||||
|
|
||||||
#include "armv7m.h"
|
#include <target/armv7m.h>
|
||||||
|
|
||||||
|
|
||||||
#define CORTEX_M3_COMMON_MAGIC 0x1A451A45
|
#define CORTEX_M3_COMMON_MAGIC 0x1A451A45
|
||||||
|
|
Loading…
Reference in New Issue