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 targets/os/riot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ARCHIVES += $(JERRYDIR)/build/lib/libjerry-ext.a
ARCHIVES += $(JERRYDIR)/build/lib/libjerry-port.a

USEMODULE += shell
USEMODULE += shell_commands
USEMODULE += shell_cmds_default
USEMODULE += posix_sleep

.PHONY: libjerry
Expand Down
2 changes: 1 addition & 1 deletion targets/os/riot/Makefile.travis
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ install-apt-get-deps:

# Fetch RIOT OS repository.
install-clone-riot:
git clone https://github.com/RIOT-OS/RIOT.git ../RIOT -b 2021.10
git clone https://github.com/RIOT-OS/RIOT.git ../RIOT -b 2025.04

# Perform all the necessary (JerryScript-independent) installation steps.
install-noapt: install-clone-riot
Expand Down
2 changes: 1 addition & 1 deletion targets/os/riot/source/jerry-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ main (void)
} now = { .d = jerry_port_current_time () };
srand (now.u);
printf ("You are running RIOT on a(n) %s board.\n", RIOT_BOARD);
printf ("This board features a(n) %s MCU.\n", RIOT_MCU);
printf ("This board features a(n) %s MCU.\n", RIOT_CPU);

/* start the shell */
char line_buf[SHELL_DEFAULT_BUFSIZE];
Expand Down
Loading