diff --git a/cpu/lpc1768/Makefile.include b/cpu/lpc1768/Makefile.include index 99de28dcc..f16ada89b 100644 --- a/cpu/lpc1768/Makefile.include +++ b/cpu/lpc1768/Makefile.include @@ -1,6 +1,3 @@ export CPU_ARCH = cortex-m3 -# use hwtimer compatibility module -USEMODULE += hwtimer_compat - include $(RIOTCPU)/Makefile.include.cortexm_common diff --git a/cpu/lpc1768/include/cpu_conf.h b/cpu/lpc1768/include/cpu_conf.h index 9f5b085bf..813f90173 100644 --- a/cpu/lpc1768/include/cpu_conf.h +++ b/cpu/lpc1768/include/cpu_conf.h @@ -13,7 +13,7 @@ * @{ * * @file - * @brief CPU specific hwtimer configuration options + * @brief CPU specific configuration options * * @author Hauke Petersen */ diff --git a/cpu/lpc1768/include/hwtimer_cpu.h b/cpu/lpc1768/include/hwtimer_cpu.h deleted file mode 100644 index e001d1427..000000000 --- a/cpu/lpc1768/include/hwtimer_cpu.h +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright (C) 2014 Freie Universität Berlin - * - * This file is subject to the terms and conditions of the GNU Lesser General - * Public License v2.1. See the file LICENSE in the top level directory for more - * details. - */ - -/** - * @ingroup cpu_lpc1768 - * @{ - * - * @file - * @brief CPU specific hwtimer configuration options - * - * @author Hauke Petersen - */ - -#ifndef __HWTIMER_CPU_H -#define __HWTIMER_CPU_H - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * @name Hardware timer configuration - * @{ - */ -#define HWTIMER_MAXTIMERS 4 /**< the CPU implementation supports 4 HW timers */ -#define HWTIMER_SPEED 1000000 /**< the HW timer runs with 1MHz */ -#define HWTIMER_MAXTICKS (0xFFFFFFFF) /**< 32-bit timer */ -/** @} */ - -#ifdef __cplusplus -} -#endif - -#endif /* __HWTIMER_CPU_H */ -/** @} */