From 7442459895b6c19195ef50877f23187cef6bf7d3 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 5 Feb 2015 17:58:17 -0600 Subject: [PATCH] tmv4c123g-launchpad: Add Tiva ADC support to the TM4C123G-Launchpad. From Calvin Maguranis. --- configs/tm4c123g-launchpad/src/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configs/tm4c123g-launchpad/src/Makefile b/configs/tm4c123g-launchpad/src/Makefile index 0cb7605a09..585669af7d 100644 --- a/configs/tm4c123g-launchpad/src/Makefile +++ b/configs/tm4c123g-launchpad/src/Makefile @@ -1,7 +1,7 @@ ############################################################################ # configs/tm4c123g-launchpad/src/Makefile # -# Copyright (C) 2014 Gregory Nutt. All rights reserved. +# Copyright (C) 2014-2015 Gregory Nutt. All rights reserved. # Author: Gregory Nutt # # Redistribution and use in source and binary forms, with or without @@ -53,6 +53,10 @@ ifeq ($(CONFIG_TIVA_TIMER),y) CSRCS += tm4c_timer.c endif +ifeq ($(CONFIG_TIVA_ADC),y) +CHIP_CSRCS += tm4c_adc.c +endif + ifeq ($(CONFIG_MTD_AT24XX),y) ifeq ($(CONFIG_TIVA_I2C0),y) CSRCS += tm4c_at24.c