Merged in masayuki2009/nuttx.apps/wireless_gs2200m (pull request #177)

apps/wireless/gs2200m: Moved from apps/system/gs2200m

Signed-off-by: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>

Approved-by: Gregory Nutt <gnutt@nuttx.org>
This commit is contained in:
Masayuki Ishikawa 2019-06-27 00:54:19 +00:00 committed by Gregory Nutt
parent 2c8e349552
commit d2f3ad91e2
5 changed files with 17 additions and 17 deletions

View File

@ -3,7 +3,7 @@
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_GS2200M
config WIRELESS_GS2200M
tristate "Telit GS2200M usrsock daemon"
default n
depends on NET_USRSOCK && WL_GS2200M
@ -12,16 +12,16 @@ config SYSTEM_GS2200M
---help---
Enable support for the gs2200m usrsock daemon
if SYSTEM_GS2200M
config SYSTEM_GS2200M_PROGNAME
if WIRELESS_GS2200M
config WIRELESS_GS2200M_PROGNAME
string "gs2200m program name"
default "gs2200m"
config SYSTEM_GS2200M_PRIORITY
config WIRELESS_GS2200M_PRIORITY
int "gs2200m task priority"
default 50
config SYSTEM_GS2200M_STACKSIZE
config WIRELESS_GS2200M_STACKSIZE
int "gs2200m stack size"
default 2048

View File

@ -1,5 +1,5 @@
############################################################################
# apps/system/gs2200m/Make.defs
# apps/wireless/gs2200m/Make.defs
# Adds selected applications to apps/ build
#
# Copyright 2019 Sony Home Entertainment & Sound Products Inc.
@ -34,6 +34,6 @@
#
############################################################################
ifneq ($(CONFIG_SYSTEM_GS2200M),)
CONFIGURED_APPS += system/gs2200m
ifneq ($(CONFIG_WIRELESS_GS2200M),)
CONFIGURED_APPS += wireless/gs2200m
endif

View File

@ -1,5 +1,5 @@
############################################################################
# apps/system/gs2200m/Makefile
# apps/wireless/gs2200m/Makefile
#
# Copyright 2019 Sony Video & Sound Products Inc.
# Author: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>
@ -37,20 +37,20 @@
# gs2200m command
CONFIG_SYSTEM_GS2200M_PRIORITY ?= SCHED_PRIORITY_DEFAULT
CONFIG_SYSTEM_GS2200M_STACKSIZE ?= 2048
CONFIG_WIRELESS_GS2200M_PRIORITY ?= SCHED_PRIORITY_DEFAULT
CONFIG_WIRELESS_GS2200M_STACKSIZE ?= 2048
APPNAME = gs2200m
PRIORITY = $(CONFIG_SYSTEM_GS2200M_PRIORITY)
STACKSIZE = $(CONFIG_SYSTEM_GS2200M_STACKSIZE)
PRIORITY = $(CONFIG_WIRELESS_GS2200M_PRIORITY)
STACKSIZE = $(CONFIG_WIRELESS_GS2200M_STACKSIZE)
CONFIG_SYSTEM_GS2200M_PROGNAME ?= gs2200m$(EXEEXT)
PROGNAME = $(CONFIG_SYSTEM_GS2200M_PROGNAME)
CONFIG_WIRELESS_GS2200M_PROGNAME ?= gs2200m$(EXEEXT)
PROGNAME = $(CONFIG_WIRELESS_GS2200M_PROGNAME)
# Files
MAINSRC = gs2200m_main.c
MODULE = CONFIG_SYSTEM_GS2200M
MODULE = CONFIG_WIRELESS_GS2200M
include $(APPDIR)/Application.mk

View File

@ -1,5 +1,5 @@
/****************************************************************************
* examples/gs2200m/gs2200m_main.c
* apps/wireless/gs2200m_main.c
*
* Copyright 2019 Sony Home Entertainment & Sound Products Inc.
* Author: Masayuki Ishikawa <Masayuki.Ishikawa@jp.sony.com>