You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.3 KiB
33 lines
1.3 KiB
# application name |
|
APPLICATION = riot_javascript |
|
|
|
# default BOARD environment |
|
BOARD ?= native |
|
|
|
BOARD_INSUFFICIENT_MEMORY := airfy-beacon calliope-mini cc2650stk maple-mini \ |
|
microbit nrf51dongle nrf6310 nucleo-f030 nucleo-f070 \ |
|
nucleo-f072 nucleo-f103 nucleo-f302 nucleo-f334 nucleo-f410 \ |
|
nucleo-l053 nucleo-l073 nucleo32-f031 nucleo32-f042 \ |
|
nucleo32-f303 nucleo32-l031 opencm904 pca10000 \ |
|
pca10005 spark-core stm32f0discovery weio yunjia-nrf51822 \ |
|
|
|
BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-uno chronos \ |
|
msb-430 msb-430h qemu-i386 telosb waspmote-pro wsn430-v1_3b \ |
|
wsn430-v1_4 z1 pic32-wifire pic32-clicker |
|
|
|
# Comment this out to disable code in RIOT that does safety checking |
|
# which is not needed in a production environment but helps in the |
|
# development process: |
|
CFLAGS += -DDEVELHELP |
|
|
|
# Set stack size to something (conservatively) enormous |
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=9092 |
|
|
|
# Add the shell and some shell commands |
|
USEMODULE += shell |
|
USEMODULE += shell_commands |
|
|
|
# Add the package for Jerryscript |
|
USEPKG += jerryscript |
|
|
|
include $(CURDIR)/../../Makefile.include
|
|
|