change #include "target_request.h" to <target/target_request.h>
Changes from the flat namespace to heirarchical one. Instead of writing: #include "target_request.h" the following form should be used. #include <target/target_request.h> The exception is from .c files in the same directory.__archive__
parent
c6dd6a576d
commit
5a94612148
|
@ -28,7 +28,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <target/breakpoints.h>
|
#include <target/breakpoints.h>
|
||||||
#include "target_request.h"
|
#include <target/target_request.h>
|
||||||
#include <target/register.h>
|
#include <target/register.h>
|
||||||
#include "server.h"
|
#include "server.h"
|
||||||
#include "flash.h"
|
#include "flash.h"
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "telnet_server.h"
|
#include "telnet_server.h"
|
||||||
#include "target_request.h"
|
#include <target/target_request.h>
|
||||||
|
|
||||||
static unsigned short telnet_port = 4444;
|
static unsigned short telnet_port = 4444;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue