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 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
View File

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

View File

@ -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;
} }