mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
17 lines
285 B
Makefile
17 lines
285 B
Makefile
MODULE = mnist
|
|
|
|
SRCXXEXT = cc
|
|
|
|
CXXEXFLAGS += -Wno-unused-parameter
|
|
CXXEXFLAGS += -Wno-type-limits
|
|
|
|
CFLAGS += -Wno-pedantic
|
|
|
|
# Add the tensorflow lite quantized model as a blob
|
|
BLOBS += model.tflite
|
|
|
|
# Add the input digit image as blob
|
|
BLOBS += digit
|
|
|
|
include $(RIOTBASE)/Makefile.base
|