1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/pttu/include/board.h

59 lines
989 B
C
Raw Normal View History

/*
* 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.
*/
/**
* @defgroup boards_pttu PTTU
* @ingroup boards
* @brief Support for the PTTU board
* @{
*
* @file
* @brief Basic definitions for the PTTU board
*
* @author Kaspar Schleiser <kaspar@schleiser.de>
*/
#ifndef BOARD_H_
#define BOARD_H_
2014-01-20 19:39:00 +01:00
#include <stdint.h>
2013-12-16 17:54:58 +01:00
#include "lpc2387.h"
#include "cpu_conf.h"
#ifdef __cplusplus
extern "C" {
#endif
2015-05-26 16:44:55 +02:00
/**
* @brief VICIntEnClear Alias for compatibility
*/
#define VICIntEnClear VICIntEnClr
2015-05-26 16:44:55 +02:00
/**
* @brief Clock initialization part one
*/
void init_clks1(void);
2015-05-26 16:44:55 +02:00
/**
* @brief Clock initialization part two
*/
void init_clks2(void);
2015-05-26 16:44:55 +02:00
/**
* @brief Jump to clock initialization code
*/
void bl_init_clks(void);
#ifdef __cplusplus
}
#endif
/** @} */
#endif /* BOARD_H_ */