2013-11-28 12:57:41 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* This file subject to the terms and conditions of the GNU Lesser General
|
|
|
|
* Public License. See the file LICENSE in the top level directory for more
|
|
|
|
* details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @defgroup boards_olimex_lpc2148 Olimex LPC2148
|
|
|
|
* @ingroup boards
|
|
|
|
* @brief Support for the Olimex LPC2148 board
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file board.h
|
|
|
|
* @brief Basic definitions for the Olimex LPC2148 board
|
|
|
|
*
|
|
|
|
* @author unknown
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __OLIMEX_LPC2148_H
|
|
|
|
#define __OLIMEX_LPC2148_H
|
|
|
|
|
2013-10-28 23:01:45 +01:00
|
|
|
#include <stdint.h>
|
|
|
|
#include "lpc2148.h"
|
2013-10-20 17:54:31 +02:00
|
|
|
|
|
|
|
typedef uint8_t radio_packet_length_t;
|
2013-11-28 12:57:41 +01:00
|
|
|
|
|
|
|
/** @} */
|
|
|
|
#endif /* __OLIMEX_LPC2148_H */
|