mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
36 lines
572 B
C
36 lines
572 B
C
/**
|
|
* @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
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "lpc2387.h"
|
|
#include "cpu-conf.h"
|
|
|
|
#define VICIntEnClear VICIntEnClr
|
|
|
|
/**
|
|
* @brief Boards has a radio
|
|
*/
|
|
#define HAS_RADIO
|
|
|
|
void init_clks1(void);
|
|
void init_clks2(void);
|
|
void bl_init_clks(void);
|
|
|
|
typedef uint8_t radio_packet_length_t;
|
|
|
|
/** @} */
|
|
#endif // __BOARD_H
|