From d7a4f90e6976c93023f96efa3da30eec1b41c41b Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Fri, 14 Aug 2015 13:50:32 +0200 Subject: [PATCH] cpu: stm32f1: remove obsolete hwtimer support --- cpu/stm32f1/include/hwtimer_cpu.h | 41 ------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 cpu/stm32f1/include/hwtimer_cpu.h diff --git a/cpu/stm32f1/include/hwtimer_cpu.h b/cpu/stm32f1/include/hwtimer_cpu.h deleted file mode 100644 index aa789a8bd..000000000 --- a/cpu/stm32f1/include/hwtimer_cpu.h +++ /dev/null @@ -1,41 +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_stm32f1 - * @{ - * - * @file - * @brief CPU specific hwtimer configuration options - * - * @author Thomas Eichinger - */ - -#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 (1000000U) /**< the HW timer runs with 1MHz */ -#define HWTIMER_MAXTICKS (0xFFFFFFFF) /**< 32-bit timer */ -#define HWTIMER_WAIT_OVERHEAD (3) -/** @} */ - -#ifdef __cplusplus -} -#endif - -#endif /* HWTIMER_CPU_H_ */ -/** @} */