1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00
RIOT/boards/pttu/include/board.h
BigDaddyD b6bd067863 boards: removed leading underscores from macros
* also added a trailing underscore to header guards for consistency

Commit for PR 2623, repairing header file include guards.
This PR is intended to fix the include guards in files under RIOT/boards

SQUASH ME: fix underscore removal overdos

SQUASH ME: consistent macro naming

SQUASH ME: missed that one

SQUASH ME: fixed overdo

SQUASH ME: consistency
2015-06-24 15:54:36 +02:00

64 lines
1.1 KiB
C

/*
* 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_
#include <stdint.h>
#include "lpc2387.h"
#include "cpu_conf.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief VICIntEnClear Alias for compatibility
*/
#define VICIntEnClear VICIntEnClr
/**
* @brief Clock initialization part one
*/
void init_clks1(void);
/**
* @brief Clock initialization part two
*/
void init_clks2(void);
/**
* @brief Jump to clock initialization code
*/
void bl_init_clks(void);
/**
* @brief Define the type for the radio packet length for the transceiver
*/
typedef uint8_t radio_packet_length_t;
#ifdef __cplusplus
}
#endif
/** @} */
#endif /* BOARD_H_ */