Initialize the uart by passing in the base and irq, as well as a flag specifying if it's the debug uart and should directly put data into the console buffer (if present).
10 lines
148 B
Makefile
10 lines
148 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
MODULE := $(LOCAL_DIR)
|
|
|
|
MODULE_SRCS += $(LOCAL_DIR)/uart.c
|
|
|
|
MODULE_OPTIONS := extra_warnings
|
|
|
|
include make/module.mk
|