/* * 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 */ #ifndef __BOARD_H #define __BOARD_H #include #include "lpc2387.h" #include "cpu-conf.h" #ifdef __cplusplus extern "C" { #endif #define VICIntEnClear VICIntEnClr void init_clks1(void); void init_clks2(void); void bl_init_clks(void); typedef uint8_t radio_packet_length_t; #ifdef __cplusplus } #endif /** @} */ #endif // __BOARD_H