Blame view

RIOT/boards/pttu/include/board.h 989 Bytes
fb11e647   vrobic   reseau statique a...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
  /*
   * 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);
  
  #ifdef __cplusplus
  }
  #endif
  
  /** @} */
  #endif /* BOARD_H_ */