summaryrefslogtreecommitdiff
path: root/apps/examples/cc3000
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-06 09:19:15 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-06 09:19:15 -0600
commit47bea0e67e4093d4482e8781782b98abda134801 (patch)
tree950f50b0f2119e9785e89becdaf239bb298d5146 /apps/examples/cc3000
parentdfbcec0bde2500b34356050537ca9d85c694412b (diff)
downloadpx4-nuttx-47bea0e67e4093d4482e8781782b98abda134801.tar.gz
px4-nuttx-47bea0e67e4093d4482e8781782b98abda134801.tar.bz2
px4-nuttx-47bea0e67e4093d4482e8781782b98abda134801.zip
With kernel build, entry point to all tasks is main, not some xyz_main
Diffstat (limited to 'apps/examples/cc3000')
-rw-r--r--apps/examples/cc3000/cc3000basic.c4
-rw-r--r--apps/examples/cc3000/shell.c4
2 files changed, 8 insertions, 0 deletions
diff --git a/apps/examples/cc3000/cc3000basic.c b/apps/examples/cc3000/cc3000basic.c
index 260c6f821..739d91796 100644
--- a/apps/examples/cc3000/cc3000basic.c
+++ b/apps/examples/cc3000/cc3000basic.c
@@ -957,7 +957,11 @@ void ShowInformation(void)
printf(" Connected to SSID: %s\n", localB);
}
+#ifdef CONFIG_BUILD_KERNEL
+int main(int argc, FAR char **argv)
+#else
int c3b_main(int argc, char *argv[])
+#endif
{
char ch='0';
diff --git a/apps/examples/cc3000/shell.c b/apps/examples/cc3000/shell.c
index 084302b7a..616c75154 100644
--- a/apps/examples/cc3000/shell.c
+++ b/apps/examples/cc3000/shell.c
@@ -200,7 +200,11 @@ static void shell_netinit(void)
* Public Functions
****************************************************************************/
+#ifdef CONFIG_BUILD_KERNEL
+int main(int argc, FAR char **argv)
+#else
int shell_main(int argc, char *argv[])
+#endif
{
struct telnetd_config_s config;
int ret;