Add .gitignore file for ESP8266
This commit is contained in:
parent
15fd860a2f
commit
8217864a10
@ -52,7 +52,7 @@
|
|||||||
|
|
||||||
#define lespBSSID_SIZE 6
|
#define lespBSSID_SIZE 6
|
||||||
|
|
||||||
#define lespIP(x1,x2,x3,x4) ( (x1)<<24 |(x2)<<16 |(x3)<<8 |(x4)<<0 )
|
#define lespIP(x1,x2,x3,x4) ((x1) << 24 | (x2) << 16 | (x3) << 8 | (x4) << 0)
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Public Types
|
* Public Types
|
||||||
@ -62,7 +62,7 @@ typedef enum
|
|||||||
{
|
{
|
||||||
lesp_eMODE_AP = 0,
|
lesp_eMODE_AP = 0,
|
||||||
lesp_eMODE_STATION = 1,
|
lesp_eMODE_STATION = 1,
|
||||||
lesp_eMODE_BOTH = 2,
|
lesp_eMODE_BOTH = 2
|
||||||
} lesp_mode_t;
|
} lesp_mode_t;
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
|
6
netutils/esp8266/.gitignore
vendored
Normal file
6
netutils/esp8266/.gitignore
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
/.built
|
||||||
|
/.depend
|
||||||
|
/Make.dep
|
||||||
|
/*.src
|
||||||
|
/*.obj
|
||||||
|
/*.lst
|
@ -39,34 +39,34 @@ include $(APPDIR)/Make.defs
|
|||||||
|
|
||||||
# ESP8266 Library
|
# ESP8266 Library
|
||||||
|
|
||||||
ASRCS =
|
ASRCS =
|
||||||
CSRCS =
|
CSRCS =
|
||||||
|
|
||||||
ifeq ($(CONFIG_NET_TCP),y)
|
ifeq ($(CONFIG_NET_TCP),y)
|
||||||
CSRCS += esp8266.c
|
CSRCS += esp8266.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
||||||
COBJS = $(CSRCS:.c=$(OBJEXT))
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
||||||
|
|
||||||
SRCS = $(ASRCS) $(CSRCS)
|
SRCS = $(ASRCS) $(CSRCS)
|
||||||
OBJS = $(AOBJS) $(COBJS)
|
OBJS = $(AOBJS) $(COBJS)
|
||||||
|
|
||||||
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
||||||
BIN = ..\..\libapps$(LIBEXT)
|
BIN = ..\..\libapps$(LIBEXT)
|
||||||
else
|
else
|
||||||
ifeq ($(WINTOOL),y)
|
ifeq ($(WINTOOL),y)
|
||||||
BIN = ..\\..\\libapps$(LIBEXT)
|
BIN = ..\\..\\libapps$(LIBEXT)
|
||||||
else
|
else
|
||||||
BIN = ../../libapps$(LIBEXT)
|
BIN = ../../libapps$(LIBEXT)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ROOTDEPPATH = --dep-path .
|
ROOTDEPPATH = --dep-path .
|
||||||
|
|
||||||
# Common build
|
# Common build
|
||||||
|
|
||||||
VPATH =
|
VPATH =
|
||||||
|
|
||||||
all: .built
|
all: .built
|
||||||
.PHONY: context depend clean distclean
|
.PHONY: context depend clean distclean
|
||||||
|
@ -1407,7 +1407,7 @@ int lesp_gethostbyname(char *hostname, uint16_t usNameLen,
|
|||||||
int lesp_mdnsadvertiser(uint16_t mdnsEnabled, char *deviceServiceName,
|
int lesp_mdnsadvertiser(uint16_t mdnsEnabled, char *deviceServiceName,
|
||||||
uint16_t deviceServiceNameLength)
|
uint16_t deviceServiceNameLength)
|
||||||
{
|
{
|
||||||
syslog(LOG_ERR, "Not implemented %s\n",__func__);
|
syslog(LOG_ERR, "Not implemented %s\n", __func__);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user