mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
6428daf9c7
Inclusion of generic <msp430.h> file is done in cpu.h
40 lines
1.0 KiB
C
40 lines
1.0 KiB
C
/******************************************************************************
|
|
Copyright (C) 2013, Freie Universitaet Berlin (FUB). All rights reserved.
|
|
|
|
These sources were developed at the Freie Universitaet Berlin, Computer Systems
|
|
and Telematics group (http://cst.mi.fu-berlin.de).
|
|
-------------------------------------------------------------------------------
|
|
This file is part of RIOT.
|
|
|
|
This file is subject to the terms and conditions of the LGPLv2.
|
|
See the file LICENSE in the top level directory for more details.
|
|
*******************************************************************************/
|
|
|
|
#ifndef __HWTIMER_CPU_H
|
|
#define __HWTIMER_CPU_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "cpu.h"
|
|
|
|
#ifdef __MSP430_HAS_TA2__
|
|
#define ARCH_MAXTIMERS 2
|
|
#endif
|
|
#ifdef __MSP430_HAS_TA3__
|
|
#define ARCH_MAXTIMERS 3
|
|
#endif
|
|
#ifdef __MSP430_HAS_T0A5__
|
|
#define ARCH_MAXTIMERS 5
|
|
#endif
|
|
|
|
|
|
#ifndef ARCH_MAXTIMERS
|
|
#warning "ARCH_MAXTIMERS UNSET!"
|
|
#define ARCH_MAXTIMERS 0
|
|
#endif
|
|
|
|
#define HWTIMER_SPEED (F_RC_OSCILLATOR)
|
|
#define HWTIMER_MAXTICKS (0xFFFFFFFF)
|
|
|
|
#endif // __HWTIMER_CPU_H
|