summaryrefslogtreecommitdiff
path: root/apps/examples/hidkbd/hidkbd_main.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-30 20:13:50 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-08-30 20:13:50 +0000
commit79c7065433ae27932ad8b781d38b8f7832b01581 (patch)
treef770414832eeecb35adb70404b31d147afad7235 /apps/examples/hidkbd/hidkbd_main.c
parentf9d19788072090be80b71ab0d0de14507a6e739b (diff)
downloadnuttx-79c7065433ae27932ad8b781d38b8f7832b01581.tar.gz
nuttx-79c7065433ae27932ad8b781d38b8f7832b01581.tar.bz2
nuttx-79c7065433ae27932ad8b781d38b8f7832b01581.zip
Add configurable application entry point
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5070 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/examples/hidkbd/hidkbd_main.c')
-rw-r--r--apps/examples/hidkbd/hidkbd_main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/examples/hidkbd/hidkbd_main.c b/apps/examples/hidkbd/hidkbd_main.c
index 96864b9f9..51e927008 100644
--- a/apps/examples/hidkbd/hidkbd_main.c
+++ b/apps/examples/hidkbd/hidkbd_main.c
@@ -141,10 +141,10 @@ static int hidkbd_waiter(int argc, char *argv[])
}
/****************************************************************************
- * Name: user_start
+ * Name: hidkbd_main
****************************************************************************/
-int user_start(int argc, char *argv[])
+int hidkbd_main(int argc, char *argv[])
{
char buffer[256];
pid_t pid;
@@ -154,22 +154,22 @@ int user_start(int argc, char *argv[])
/* First, register all of the USB host HID keyboard class driver */
- printf("user_start: Register class drivers\n");
+ printf("hidkbd_main: Register class drivers\n");
ret = usbhost_kbdinit();
if (ret != OK)
{
- printf("user_start: Failed to register the KBD class\n");
+ printf("hidkbd_main: Failed to register the KBD class\n");
}
/* Then get an instance of the USB host interface */
- printf("user_start: Initialize USB host keyboard driver\n");
+ printf("hidkbd_main: Initialize USB host keyboard driver\n");
g_drvr = usbhost_initialize(0);
if (g_drvr)
{
/* Start a thread to handle device connection. */
- printf("user_start: Start hidkbd_waiter\n");
+ printf("hidkbd_main: Start hidkbd_waiter\n");
#ifndef CONFIG_CUSTOM_STACK
pid = task_create("usbhost", CONFIG_EXAMPLES_HIDKBD_DEFPRIO,