No need to malloc this memory if it's always going to be initialized anyway. Add history disabling switch to a few targets to make sure both builds are tested.
18 lines
292 B
Makefile
18 lines
292 B
Makefile
LOCAL_DIR := $(GET_LOCAL_DIR)
|
|
|
|
MODULE := $(LOCAL_DIR)
|
|
|
|
STELLARIS_CHIP := LM4F120H5QR
|
|
PLATFORM := stellaris
|
|
|
|
GLOBAL_DEFINES += \
|
|
CONSOLE_ENABLE_HISTORY=0 \
|
|
TARGET_HAS_DEBUG_LED=1 \
|
|
CRYSTAL_FREQ=16000000
|
|
|
|
MODULE_SRCS += \
|
|
$(LOCAL_DIR)/init.c \
|
|
$(LOCAL_DIR)/usb.c \
|
|
|
|
include make/module.mk
|