summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/examples/cc3000/Makefile2
-rw-r--r--nuttx/include/nuttx/wireless/cc3000/include/cc3000_upif.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/apps/examples/cc3000/Makefile b/apps/examples/cc3000/Makefile
index 524c4f4f6..bf6bcc43f 100644
--- a/apps/examples/cc3000/Makefile
+++ b/apps/examples/cc3000/Makefile
@@ -50,7 +50,7 @@ STACKSIZE1 = 2048
# Hello, World! Example
ASRCS =
-CSRCS = cc3000basic.c board.c shell.c telnetd_driver.c
+CSRCS = cc3000basic.c board.c shell.c telnetd_driver.c telnetd_daemon.c
AOBJS = $(ASRCS:.S=$(OBJEXT))
COBJS = $(CSRCS:.c=$(OBJEXT))
diff --git a/nuttx/include/nuttx/wireless/cc3000/include/cc3000_upif.h b/nuttx/include/nuttx/wireless/cc3000/include/cc3000_upif.h
index b998643d2..d121203a6 100644
--- a/nuttx/include/nuttx/wireless/cc3000/include/cc3000_upif.h
+++ b/nuttx/include/nuttx/wireless/cc3000/include/cc3000_upif.h
@@ -143,6 +143,7 @@ struct cc3000_config_s
void (*power_enable)(FAR struct cc3000_config_s *state,bool enable);
void (*chip_select)(FAR struct cc3000_config_s *state,bool enable);
bool (*irq_read)(FAR struct cc3000_config_s *state);
+ bool (*probe)(FAR struct cc3000_config_s *state, int n, bool s);
};
/****************************************************************************