mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
25b9bfd97b
Removed `usbDelay(uint32_t cycles)`, added `usbSleep(uint32_t millis)` The same method signature could cause silent code breakage at runtime, as opposed to noisy code breakage at compile time which is the better kind.
22 lines
322 B
Makefile
22 lines
322 B
Makefile
OBJS += buttons.o
|
|
OBJS += layout.o
|
|
OBJS += oled.o
|
|
OBJS += rng.o
|
|
OBJS += serialno.o
|
|
OBJS += setup.o
|
|
OBJS += util.o
|
|
OBJS += memory.o
|
|
OBJS += timer.o
|
|
OBJS += gen/bitmaps.o
|
|
OBJS += gen/fonts.o
|
|
|
|
libtrezor.a: $(OBJS)
|
|
$(AR) rcs libtrezor.a $(OBJS)
|
|
|
|
include Makefile.include
|
|
|
|
.PHONY: vendor
|
|
|
|
vendor:
|
|
git submodule update --init
|