mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 00:29:46 +01:00
8100203e95
This is intended for the bootloader module where we don't enter thread mode, so mutex must never attempt to switch context. Instead use a simple busy wait that is enough to make the possible mutex users (e.g. interrupt based SPI) in bootloader mode work.
8 lines
219 B
Makefile
8 lines
219 B
Makefile
# exclude submodule sources from *.c wildcard source selection
|
|
SRC := $(filter-out mbox.c msg.c msg_bus.c thread.c thread_flags.c,$(wildcard *.c))
|
|
|
|
# enable submodules
|
|
SUBMODULES := 1
|
|
|
|
include $(RIOTBASE)/Makefile.base
|