Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/abntcodi/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ config EXAMPLES_ABNTCODI_PRIORITY

config EXAMPLES_ABNTCODI_STACKSIZE
int "ABNTCODI stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/adc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ MAINSRC = adc_main.c

PROGNAME = adc
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_ADC)

include $(APPDIR)/Application.mk
2 changes: 1 addition & 1 deletion examples/adxl372_test/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ config EXAMPLES_ADXL372_TEST_PRIORITY

config EXAMPLES_ADXL372_TEST_STACKSIZE
int "adxl372_test stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/ajoystick/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ MAINSRC = ajoy_main.c

PROGNAME = ajoy
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_AJOYSTICK)

include $(APPDIR)/Application.mk
2 changes: 1 addition & 1 deletion examples/alarm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ config EXAMPLES_ALARM_PRIORITY

config EXAMPLES_ALARM_STACKSIZE
int "Alarm stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

config EXAMPLES_ALARM_DEVPATH
string "RTC device path"
Expand Down
2 changes: 1 addition & 1 deletion examples/apa102/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

PROGNAME = $(CONFIG_EXAMPLES_APA102_PROGNAME)
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_APA102)

# APA102 Test
Expand Down
2 changes: 1 addition & 1 deletion examples/apds9960/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ config EXAMPLES_APDS9960_PRIORITY

config EXAMPLES_APDS9960_STACKSIZE
int "APDS-9960 Test stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/audio_rttl/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ config EXAMPLES_AUDIO_SOUND_PRIORITY

config EXAMPLES_AUDIO_SOUND_STACKSIZE
int "Audio sound stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/bastest/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

PROGNAME = bastest
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_BASTEST)

# Hello, World! Example
Expand Down
2 changes: 1 addition & 1 deletion examples/battery/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ config EXAMPLES_BATTERY_PRIORITY

config EXAMPLES_BATTERY_STACKSIZE
int "Battery stack size"
default 2048
default DEFAULT_TASK_STACKSIZE
endif
2 changes: 1 addition & 1 deletion examples/bmi160/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ config EXAMPLES_SIXAXIS_PRIORITY

config EXAMPLES_SIXAXIS_STACKSIZE
int "sixaxis stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/bmp180/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ config EXAMPLES_BMP180_PRIORITY

config EXAMPLES_BMP180_STACKSIZE
int "BMP180 stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
4 changes: 2 additions & 2 deletions examples/bridge/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ config EXAMPLES_BRIDGE_NET1_HOSTPORT

config EXAMPLES_BRIDGE_NET1_STACKSIZE
int "Network 1 daemon stacksize"
default 2048
default DEFAULT_TASK_STACKSIZE

config EXAMPLES_BRIDGE_NET1_PRIORITY
int "Network 1 daemon task priority"
Expand Down Expand Up @@ -177,7 +177,7 @@ config EXAMPLES_BRIDGE_NET2_HOSTPORT

config EXAMPLES_BRIDGE_NET2_STACKSIZE
int "Network 2 daemon stacksize"
default 2048
default DEFAULT_TASK_STACKSIZE

config EXAMPLES_BRIDGE_NET2_PRIORITY
int "Network 2 daemon task priority"
Expand Down
2 changes: 1 addition & 1 deletion examples/bridge/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

PROGNAME = bridge
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_BRIDGE)

MAINSRC = bridge_main.c
Expand Down
2 changes: 1 addition & 1 deletion examples/buttons/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ config EXAMPLES_BUTTONS_PRIORITY

config EXAMPLES_BUTTONS_STACKSIZE
int "Button stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

config EXAMPLES_BUTTONS_DEVPATH
string "Button device path"
Expand Down
2 changes: 1 addition & 1 deletion examples/calib_udelay/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

PROGNAME = calib_udelay
PRIORITY = 100
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_CALIB_UDELAY)

# Udelay calibration tool
Expand Down
2 changes: 1 addition & 1 deletion examples/can/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ MAINSRC = can_main.c

PROGNAME = can
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_CAN)

include $(APPDIR)/Application.mk
2 changes: 1 addition & 1 deletion examples/canard/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,6 @@ config EXAMPLES_LIBCANARD_DAEMON_PRIORITY

config EXAMPLES_LIBCANARD_STACKSIZE
int "canard stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/cctype/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ MAINSRC = cctype_main.cxx

PROGNAME = cctype
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_CCTYP)

include $(APPDIR)/Application.mk
2 changes: 1 addition & 1 deletion examples/charger/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ config EXAMPLES_CHARGER_PRIORITY

config EXAMPLES_CHARGER_STACKSIZE
int "charger stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/chat/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ MAINSRC = chat_main.c

PROGNAME = chat
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_CHAT)

include $(APPDIR)/Application.mk
2 changes: 1 addition & 1 deletion examples/chrono/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ config EXAMPLES_CHRONO_PRIORITY

config EXAMPLES_CHRONO_STACKSIZE
int "Chrono stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/configdata/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

PROGNAME = configdata
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_CONFIGDATA)

MAINSRC = configdata_main.c
Expand Down
2 changes: 1 addition & 1 deletion examples/cpuhog/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if EXAMPLES_CPUHOG

config EXAMPLES_CPUHOG_STACKSIZE
int "CPU hog stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

config EXAMPLES_CPUHOG_PRIORITY
int "CPU hog task priority"
Expand Down
2 changes: 1 addition & 1 deletion examples/dac/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ MAINSRC = dac_main.c

PROGNAME = dac
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_DAC)

include $(APPDIR)/Application.mk
2 changes: 1 addition & 1 deletion examples/dhcpd/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ MAINSRC = target.c

PROGNAME = dhcpd
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_DHCPD)

include $(APPDIR)/Application.mk
2 changes: 1 addition & 1 deletion examples/dhtxx/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ config EXAMPLES_DHTXX_PRIORITY

config EXAMPLES_DHTXX_STACKSIZE
int "Dhtxx stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/discover/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

PROGNAME = discover
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_DISCOVER)

MAINSRC = discover_main.c
Expand Down
2 changes: 1 addition & 1 deletion examples/djoystick/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ MAINSRC = djoy_main.c

PROGNAME = djoy
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_DJOYSTICK)

include $(APPDIR)/Application.mk
2 changes: 1 addition & 1 deletion examples/dsptest/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ config EXAMPLES_DSPTEST_PRIORITY

config EXAMPLES_DSPTEST_STACKSIZE
int "Dsptest stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/elf/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ MAINSRC = elf_main.c

PROGNAME = elf
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_ELF)

ROOTDEPPATH := --dep-path tests
Expand Down
2 changes: 1 addition & 1 deletion examples/embedlog/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ config EXAMPLES_EMBEDLOG_PRIORITY

config EXAMPLES_EMBEDLOG_STACKSIZE
int "embedlog example stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif #EXAMPLES_EMBEDLOG
endif #SYSTEM_EMBEDLOG
2 changes: 1 addition & 1 deletion examples/fb/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ config EXAMPLES_FB_PRIORITY

config EXAMPLES_FB_STACKSIZE
int "Stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/fboverlay/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ config EXAMPLES_FBOVERLAY_PRIORITY

config EXAMPLES_FBOVERLAY_STACKSIZE
int "Stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/flash_test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@

PROGNAME = flash_test
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_FLASH_TEST)

MAINSRC = flash_test.c
Expand Down
4 changes: 2 additions & 2 deletions examples/flowc/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ config EXAMPLES_FLOWC_PRIORITY1

config EXAMPLES_FLOWC_STACKSIZE1
int "Target1 stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

config EXAMPLES_FLOWC_TARGET2
bool "Second endpoint is a target"
Expand All @@ -91,7 +91,7 @@ config EXAMPLES_FLOWC_PRIORITY2

config EXAMPLES_FLOWC_STACKSIZE2
int "Target2 stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif # EXAMPLES_FLOWC_TARGET2

Expand Down
2 changes: 1 addition & 1 deletion examples/ft80x/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ config EXAMPLES_FT80X_PRIORITY

config EXAMPLES_FT80X_STACKSIZE
int "FT80x stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/ftpd/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ if EXAMPLES_FTPD

config EXAMPLES_FTPD_STACKSIZE
int "FTP Daemon Stack Size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/gpio/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ config EXAMPLES_GPIO_PRIORITY

config EXAMPLES_GPIO_STACKSIZE
int "GPIO stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/gps/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ config EXAMPLES_GPS_PRIORITY

config EXAMPLES_GPS_STACKSIZE
int "GPS stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/hello/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ config EXAMPLES_HELLO_PRIORITY

config EXAMPLES_HELLO_STACKSIZE
int "Hello stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

endif
2 changes: 1 addition & 1 deletion examples/helloxx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ MAINSRC = helloxx_main.cxx

PROGNAME = helloxx
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_HELLOXX)

include $(APPDIR)/Application.mk
2 changes: 1 addition & 1 deletion examples/hidkbd/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ config EXAMPLES_HIDKBD_PROGNAME

config EXAMPLES_HIDKBD_STACKSIZE
int "Task stack size"
default 2048
default DEFAULT_TASK_STACKSIZE

config EXAMPLES_HIDKBD_DEFPRIO
int "Task priority"
Expand Down
2 changes: 1 addition & 1 deletion examples/hts221_reader/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ MAINSRC = hts221_reader_main.c

PROGNAME = hts221_reader
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = $(CONFIG_DEFAULT_TASK_STACKSIZE)
MODULE = $(CONFIG_EXAMPLES_HTS221_READER)

include $(APPDIR)/Application.mk
Loading