mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
79d33897cb
uart0 functionality is removed by #3164. This patch implements periph/uart, rather than deprecated uart0, using /dev/tty. To use with netdev2_tap simultaneously, this patch adds asynchronus read system and modifies netdev2_tap to use it. A TTY device is specified on command line with -c (COM) option, since -t was used by the old implementation. This patch also implements empty GPIO driver needed by the xbee driver.
16 lines
463 B
Makefile
16 lines
463 B
Makefile
# Put defined MCU peripherals here (in alphabetical order)
|
|
FEATURES_PROVIDED += periph_cpuid
|
|
FEATURES_PROVIDED += periph_hwrng
|
|
FEATURES_PROVIDED += periph_rtc
|
|
FEATURES_PROVIDED += periph_timer
|
|
FEATURES_PROVIDED += periph_uart
|
|
FEATURES_PROVIDED += periph_gpio
|
|
|
|
# Various other features (if any)
|
|
FEATURES_PROVIDED += config
|
|
FEATURES_PROVIDED += cpp
|
|
FEATURES_PROVIDED += ethernet
|
|
|
|
# The board MPU family (used for grouping by the CI system)
|
|
FEATURES_MCU_GROUP = x86
|