Merged in antmerlino/apps/i8sak-app-fix (pull request #156)

Fixes i8sak name. Accidentally renamed to i8ask in recent changes

Approved-by: GregoryN <gnutt@nuttx.org>
This commit is contained in:
Anthony Merlino 2018-09-12 19:02:34 +00:00 committed by GregoryN
parent c64ede319c
commit 93f84dcc8f
2 changed files with 3 additions and 3 deletions

View File

@ -38,12 +38,12 @@
# IEEE 802.15.4 SAK (swiss army knife ) # IEEE 802.15.4 SAK (swiss army knife )
CONFIG_IEEE802154_I8SAK_PROGNAME ?= i8ask$(EXEEXT) CONFIG_IEEE802154_I8SAK_PROGNAME ?= i8sak$(EXEEXT)
CONFIG_IEEE802154_I8SAK_PRIORITY ?= 100 CONFIG_IEEE802154_I8SAK_PRIORITY ?= 100
CONFIG_IEEE802154_I8SAK_STACKSIZE ?= 4096 CONFIG_IEEE802154_I8SAK_STACKSIZE ?= 4096
PROGNAME = $(CONFIG_IEEE802154_I8SAK_PROGNAME) PROGNAME = $(CONFIG_IEEE802154_I8SAK_PROGNAME)
APPNAME = i8ask APPNAME = i8sak
PRIORITY = $(CONFIG_IEEE802154_I8SAK_PRIORITY) PRIORITY = $(CONFIG_IEEE802154_I8SAK_PRIORITY)
STACKSIZE = $(CONFIG_IEEE802154_I8SAK_STACKSIZE) STACKSIZE = $(CONFIG_IEEE802154_I8SAK_STACKSIZE)

View File

@ -842,7 +842,7 @@ static int i8sak_showusage(FAR const char *progname, int exitcode)
#ifdef BUILD_MODULE #ifdef BUILD_MODULE
int main(int argc, FAR char *argv[]) int main(int argc, FAR char *argv[])
#else #else
int i8ask_main(int argc, char *argv[]) int i8sak_main(int argc, char *argv[])
#endif #endif
{ {
FAR const struct i8sak_command_s *i8sakcmd; FAR const struct i8sak_command_s *i8sakcmd;