Blame view

RIOT/boards/pic32-clicker/include/board.h 1.72 KB
a752c7ab   elopes   add first test an...
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  /*
   * Copyright(C) 2016,2017, Imagination Technologies Limited and/or its
   *                 affiliated group companies.
   *
   * 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_pic32-clicker MikroE PIC32 Clicker
   * @ingroup     boards
   * @brief       board configuration for the MikroE PIC32 Clicker
   * @details
   * see:
   * http://www.mikroe.com/pic32/pic32mx-clicker/
   * For more information on the board.
   *
   * @{
   *
   * @file
   * @brief       board configuration for the MikroE PIC32 Clicker
   *
   * @author      Neil Jones <Neil.Jones@imgtec.com>
   */
  
  #ifndef BOARD_H
  #define BOARD_H
  
  #include "periph_conf.h"
  
  #ifdef __cplusplus
  extern "C" {
  #endif
  
  #include "vendor/p32mx470f512h.h"
  
  /**
   * @brief   Set how many increments of the count register per uS
   *          needed by the timer code.
   */
  #define TICKS_PER_US (48)
  
  /**
   * @brief   We are using an External Interrupt Controller (all pic32 devices use this mode)
   */
  #define EIC_IRQ (1)
  
  /**
   * @brief   LED pin configuration
   * @{
   */
  #define LED1_PIN            GPIO_PIN(PORT_B, 1)
  #define LED2_PIN            GPIO_PIN(PORT_B, 2)
  
  #define LED1_MASK           (1 << 1)
  #define LED2_MASK           (1 << 2)
  
  #define LED1_ON             (LATBSET = LED1_MASK)
  #define LED1_OFF            (LATBCLR = LED1_MASK)
  #define LED1_TOGGLE         (LATBINV = LED1_MASK)
  
  #define LED2_ON             (LATBSET = LED2_MASK)
  #define LED2_OFF            (LATBCLR = LED2_MASK)
  #define LED2_TOGGLE         (LATBINV = LED2_MASK)
  /** @} */
  
  /**
   * @brief   Board level initialization
   */
  void board_init(void);
  
  #ifdef __cplusplus
  }
  #endif
  
  
  #endif /* BOARD_H */
  /** @} */