1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/pkg_minmea/Makefile
Martine Lenders 5522f3d7a5 tests/pkg_minmea: port to fmt
With `newlib-nano` and other smaller `libc`s the output of floats does
not work with `printf()`. Since minmea uses floating point operations
I used `fmt` instead.
2019-05-24 18:58:47 +02:00

23 lines
602 B
Makefile

include ../Makefile.tests_common
USEPKG += minmea
USEMODULE += fmt
# The MSP-430 toolchain lacks mktime and NAN
BOARD_BLACKLIST := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1
# Incompatible due to non-standard ATmega time.h
BOARD_BLACKLIST += arduino-duemilanove \
arduino-leonardo \
arduino-mega2560 \
arduino-nano \
arduino-uno \
jiminy-mega256rfr2 \
mega-xplained \
waspmote-pro
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include