Blame view

RIOT/cpu/cc26x0/include/cc26x0_gpio.h 1.56 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
  /*
   * Copyright (C) 2016 Leon George
   *
   * 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.
   */
  /**
   * @ingroup         cpu_cc26x0_definitions
   * @{
   *
   * @file
   * @brief           Driver for the cc26x0 GPIO controller
   *
   * @author          Leon George <leon@georgemail.eu>
   *
   */
  
  #ifndef CC26X0_GPIO_H
  #define CC26X0_GPIO_H
  
  #include "cc26x0.h"
  
  #ifdef __cplusplus
  extern "C" {
  #endif
  
  /** @ingroup cpu_specific_peripheral_memory_map
   * @{
   */
  #define GPIO_BASE                   (0x40022000) /**< GPIO base address */
  /** @} */
  
  /**
   * GPIO registers
   */
  typedef struct {
      reg32_t DOUT_FRAG[8]; /**< w the first bit of each byte corresponds to one bit of DOUT */
      reg32_t __reserved1[24]; /**< unused */
      reg32_t DOUT; /**< r/w state of the output */
      reg32_t __reserved2[3]; /**< unused */
      reg32_t DOUTSET; /**< w1s set output */
      reg32_t __reserved3[3]; /**< unused */
      reg32_t DOUTCLR; /**< w1c clear output */
      reg32_t __reserved4[3]; /**< unused */
      reg32_t DOUTTGL; /**< r/w toggle output */
      reg32_t __reserved5[3]; /**< unused */
      reg32_t DIN; /**< r input status */
      reg32_t __reserved6[3]; /**< unused */
      reg32_t DOE; /**< r/w enable output */
      reg32_t __reserved7[3]; /**< unused */
      reg32_t EVFLAGS; /**< r/w1c indicates an input event */
  } gpio_regs_t;
  
  #define GPIO ((gpio_regs_t *) (GPIO_BASE)) /**< GPIO register bank */
  
  #ifdef __cplusplus
  } /* end extern "C" */
  #endif
  
  #endif /* CC26X0_GPIO_H */
  
  /** @} */