mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
10 lines
356 B
Makefile
10 lines
356 B
Makefile
|
EMULATOR ?= qemu-system-arm
|
||
|
EMULATOR_MACHINE ?= $(BOARD)
|
||
|
EMULATOR_MONITOR_PORT ?= 45454
|
||
|
EMULATOR_MONITOR_FLAGS ?= telnet::$(EMULATOR_MONITOR_PORT),server,nowait
|
||
|
|
||
|
EMULATOR_FLAGS = -machine $(EMULATOR_MACHINE) -device loader,file=$(ELFFILE) \
|
||
|
-serial stdio \
|
||
|
-monitor $(EMULATOR_MONITOR_FLAGS) \
|
||
|
-nographic
|