Add .gitignore file for ESP8266

This commit is contained in:
Gregory Nutt 2016-05-21 11:11:32 -06:00
parent 15fd860a2f
commit 8217864a10
4 changed files with 21 additions and 15 deletions

View File

@ -52,7 +52,7 @@
#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
@ -62,7 +62,7 @@ typedef enum
{
lesp_eMODE_AP = 0,
lesp_eMODE_STATION = 1,
lesp_eMODE_BOTH = 2,
lesp_eMODE_BOTH = 2
} lesp_mode_t;
typedef enum

6
netutils/esp8266/.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
/.built
/.depend
/Make.dep
/*.src
/*.obj
/*.lst

View File

@ -39,34 +39,34 @@ include $(APPDIR)/Make.defs
# ESP8266 Library
ASRCS =
CSRCS =
ASRCS =
CSRCS =
ifeq ($(CONFIG_NET_TCP),y)
CSRCS += esp8266.c
CSRCS += esp8266.c
endif
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))
SRCS = $(ASRCS) $(CSRCS)
OBJS = $(AOBJS) $(COBJS)
SRCS = $(ASRCS) $(CSRCS)
OBJS = $(AOBJS) $(COBJS)
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
BIN = ..\..\libapps$(LIBEXT)
BIN = ..\..\libapps$(LIBEXT)
else
ifeq ($(WINTOOL),y)
BIN = ..\\..\\libapps$(LIBEXT)
BIN = ..\\..\\libapps$(LIBEXT)
else
BIN = ../../libapps$(LIBEXT)
BIN = ../../libapps$(LIBEXT)
endif
endif
ROOTDEPPATH = --dep-path .
ROOTDEPPATH = --dep-path .
# Common build
VPATH =
VPATH =
all: .built
.PHONY: context depend clean distclean

View File

@ -1407,7 +1407,7 @@ int lesp_gethostbyname(char *hostname, uint16_t usNameLen,
int lesp_mdnsadvertiser(uint16_t mdnsEnabled, char *deviceServiceName,
uint16_t deviceServiceNameLength)
{
syslog(LOG_ERR, "Not implemented %s\n",__func__);
syslog(LOG_ERR, "Not implemented %s\n", __func__);
return -1;
}