Merge remote-tracking branch 'origin/master' into ieee802154
This commit is contained in:
commit
27efca636a
@ -11,6 +11,22 @@ config EXAMPLES_HIDKBD
|
|||||||
|
|
||||||
if EXAMPLES_HIDKBD
|
if EXAMPLES_HIDKBD
|
||||||
|
|
||||||
|
config EXAMPLES_HIDKBD_PROGNAME
|
||||||
|
string "Program name"
|
||||||
|
default "hidkbd"
|
||||||
|
depends on BUILD_KERNEL
|
||||||
|
---help---
|
||||||
|
This is the name of the program that will be use when the Nettest
|
||||||
|
program is installed.
|
||||||
|
|
||||||
|
config EXAMPLES_HIDKBD_STACKSIZE
|
||||||
|
int "Task stack size"
|
||||||
|
default 2048
|
||||||
|
|
||||||
|
config EXAMPLES_HIDKBD_DEFPRIO
|
||||||
|
int "Task priority"
|
||||||
|
default 100
|
||||||
|
|
||||||
config EXAMPLES_HIDKBD_DEVNAME
|
config EXAMPLES_HIDKBD_DEVNAME
|
||||||
string "Keyboard Device Name"
|
string "Keyboard Device Name"
|
||||||
default "/dev/kbda"
|
default "/dev/kbda"
|
||||||
|
@ -37,11 +37,11 @@
|
|||||||
|
|
||||||
# USB Host HID keyboard Example
|
# USB Host HID keyboard Example
|
||||||
|
|
||||||
CONFIG_EXAMPLES_HIDKBD_PRIORITY ?= SCHED_PRIORITY_DEFAULT
|
CONFIG_EXAMPLES_HIDKBD_DEFPRIO ?= 100
|
||||||
CONFIG_EXAMPLES_HIDKBD_STACKSIZE ?= 2048
|
CONFIG_EXAMPLES_HIDKBD_STACKSIZE ?= 2048
|
||||||
|
|
||||||
APPNAME = hidkbd
|
APPNAME = hidkbd
|
||||||
PRIORITY = $(CONFIG_EXAMPLES_HIDKBD_PRIORITY)
|
PRIORITY = $(CONFIG_EXAMPLES_HIDKBD_DEFPRIO)
|
||||||
STACKSIZE = $(CONFIG_EXAMPLES_HIDKBD_STACKSIZE)
|
STACKSIZE = $(CONFIG_EXAMPLES_HIDKBD_STACKSIZE)
|
||||||
|
|
||||||
# Hello, World! Example
|
# Hello, World! Example
|
||||||
|
Loading…
x
Reference in New Issue
Block a user