2010-09-22 15:10:42 +02:00
|
|
|
/**
|
2013-11-28 12:57:41 +01:00
|
|
|
* @defgroup boards_pttu PTTU
|
|
|
|
* @ingroup boards
|
|
|
|
* @brief Support for the PTTU board
|
2010-09-22 15:10:42 +02:00
|
|
|
* @{
|
|
|
|
*
|
2014-10-21 16:52:30 +02:00
|
|
|
* @file
|
2013-11-28 12:57:41 +01:00
|
|
|
* @brief Basic definitions for the PTTU board
|
2010-09-22 15:10:42 +02:00
|
|
|
*
|
2013-11-28 12:57:41 +01:00
|
|
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
2010-09-22 15:10:42 +02:00
|
|
|
*/
|
|
|
|
|
2013-11-28 12:57:41 +01:00
|
|
|
#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"
|
2010-09-22 15:10:42 +02:00
|
|
|
|
|
|
|
#define VICIntEnClear VICIntEnClr
|
|
|
|
|
2014-10-30 17:47:26 +01:00
|
|
|
/**
|
|
|
|
* @brief Boards has a radio
|
|
|
|
*/
|
|
|
|
#define HAS_RADIO
|
|
|
|
|
2010-09-22 15:10:42 +02:00
|
|
|
void init_clks1(void);
|
|
|
|
void init_clks2(void);
|
|
|
|
void bl_init_clks(void);
|
|
|
|
|
2013-10-20 17:54:31 +02:00
|
|
|
typedef uint8_t radio_packet_length_t;
|
|
|
|
|
2010-09-22 15:10:42 +02:00
|
|
|
/** @} */
|
|
|
|
#endif // __BOARD_H
|