WS2812ESP32 example name is configurable and default name shortened
This commit is contained in:
parent
21e7a9dc9e
commit
ecded726ce
@ -21,7 +21,7 @@
|
|||||||
if(CONFIG_EXAMPLES_WS2812_ESP32_RMT)
|
if(CONFIG_EXAMPLES_WS2812_ESP32_RMT)
|
||||||
nuttx_add_application(
|
nuttx_add_application(
|
||||||
NAME
|
NAME
|
||||||
ws2812esp32rmt
|
${CONFIG_EXAMPLES_WS2812_ESP32_RMT_PROGNAME}
|
||||||
PRIORITY
|
PRIORITY
|
||||||
${CONFIG_EXAMPLES_WS2812_ESP32_RMT_PRIORITY}
|
${CONFIG_EXAMPLES_WS2812_ESP32_RMT_PRIORITY}
|
||||||
STACKSIZE
|
STACKSIZE
|
||||||
|
@ -12,6 +12,13 @@ config EXAMPLES_WS2812_ESP32_RMT
|
|||||||
|
|
||||||
if EXAMPLES_WS2812_ESP32_RMT
|
if EXAMPLES_WS2812_ESP32_RMT
|
||||||
|
|
||||||
|
config EXAMPLES_WS2812_ESP32_RMT_PROGNAME
|
||||||
|
string "Program Name"
|
||||||
|
default "ws2812esp32"
|
||||||
|
---help---
|
||||||
|
This is the name of the program that will be used when the NSH ELF
|
||||||
|
program is installed.
|
||||||
|
|
||||||
config EXAMPLES_WS2812_ESP32_RMT_PRIORITY
|
config EXAMPLES_WS2812_ESP32_RMT_PRIORITY
|
||||||
int "Task Priority"
|
int "Task Priority"
|
||||||
default 100
|
default 100
|
||||||
|
@ -22,7 +22,7 @@ include $(APPDIR)/Make.defs
|
|||||||
|
|
||||||
# MTD R/W buffer test Example
|
# MTD R/W buffer test Example
|
||||||
|
|
||||||
PROGNAME = ws2812esp32rmt
|
PROGNAME = $(CONFIG_EXAMPLES_WS2812_ESP32_RMT_PROGNAME)
|
||||||
PRIORITY = $(CONFIG_EXAMPLES_WS2812_ESP32_RMT_PRIORITY)
|
PRIORITY = $(CONFIG_EXAMPLES_WS2812_ESP32_RMT_PRIORITY)
|
||||||
STACKSIZE = $(CONFIG_EXAMPLES_WS2812_ESP32_RMT_STACKSIZE)
|
STACKSIZE = $(CONFIG_EXAMPLES_WS2812_ESP32_RMT_STACKSIZE)
|
||||||
MODULE = $(CONFIG_EXAMPLES_WS2812_ESP32_RMT)
|
MODULE = $(CONFIG_EXAMPLES_WS2812_ESP32_RMT)
|
||||||
|
@ -163,7 +163,8 @@ int main(int argc, FAR char *argv[])
|
|||||||
if (fd < 0)
|
if (fd < 0)
|
||||||
{
|
{
|
||||||
fprintf(stderr,
|
fprintf(stderr,
|
||||||
"ws2812esp32rmt: open %s failed: %d\n",
|
"%s: open %s failed: %d\n",
|
||||||
|
argv[0],
|
||||||
dev_name,
|
dev_name,
|
||||||
errno);
|
errno);
|
||||||
goto errout_with_dev;
|
goto errout_with_dev;
|
||||||
|
Loading…
Reference in New Issue
Block a user