Loading...
Searching...
No Matches
board.h File Reference

Board specific definitions for the RE-Mote board Revision B. More...

Detailed Description

Board specific definitions for the RE-Mote board Revision B.

Author
Hauke Petersen hauke.nosp@m..pet.nosp@m.ersen.nosp@m.@fu-.nosp@m.berli.nosp@m.n.de
Antonio Lignan alina.nosp@m.n@zo.nosp@m.lerti.nosp@m.a.co.nosp@m.m
Sebastian Meiling s@mln.nosp@m.g.ne.nosp@m.t

Definition in file board.h.

#include "cpu.h"
#include "board_common.h"
+ Include dependency graph for board.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define MTD_0   mtd_dev_get(0)
 Default MTD device.
 

LED pin definitions

#define LED0_PIN   GPIO_PIN(3, 4)
 
#define LED1_PIN   GPIO_PIN(1, 7)
 
#define LED2_PIN   GPIO_PIN(1, 6)
 
#define LED0_MASK   (1 << 4)
 
#define LED1_MASK   (1 << 7)
 
#define LED2_MASK   (1 << 6)
 
#define LED0_ON   (GPIO_D->DATA |= LED0_MASK)
 
#define LED0_OFF   (GPIO_D->DATA &= ~LED0_MASK)
 
#define LED0_TOGGLE   (GPIO_D->DATA ^= LED0_MASK)
 
#define LED1_ON   (GPIO_B->DATA |= LED1_MASK)
 
#define LED1_OFF   (GPIO_B->DATA &= ~LED1_MASK)
 
#define LED1_TOGGLE   (GPIO_B->DATA ^= LED1_MASK)
 
#define LED2_ON   (GPIO_B->DATA |= LED2_MASK)
 
#define LED2_OFF   (GPIO_B->DATA &= ~LED2_MASK)
 
#define LED2_TOGGLE   (GPIO_B->DATA ^= LED2_MASK)
 

User button pin definition

#define BTN0_PIN   GPIO_PIN(0, 3)
 
#define BTN0_MODE   GPIO_IN_PU
 

RF switch controlled by SW

Controls which RF interface goes to the RP-SMA external antenna

These values configure the required pin to drive the RF antenna switch, to either enable the sub-1Ghz RF interface (power-up the CC1200) or the 2.4GHz RF interface of the CC2538, both alternatively routed to a RP-SMA connector to allow using an external antenna for both cases.

Note it is also possible to enable both RF interfaces at the same time, by switching On the sub-1GHz RF interface, and placing an 0Ohm resistor (R19), to select between using a ceramic chip antenna (not mounted), or to connect and external antenna over a pigtail to the U.Fl connector (not mounted).

RF switch state:

  • LOW: 2.4GHz RF interface on RP-SMA connector, CC1200 powered-off.
  • HIGH: Sub-1GHz RF interface on RP-SMA connector.
#define RF_SWITCH_GPIO   GPIO_PD2
 
#define RF_SWITCH_SUB_GHZ   gpio_set(RF_SWITCH_GPIO)
 
#define RF_SWITCH_2_4_GHZ   gpio_clear(RF_SWITCH_GPIO)
 
#define RF_SWITCH_TOGGLE   gpio_toggle(RF_SWITCH_GPIO)
 

Power management enable pin

#define SHUTDOWN_EN_GPIO   GPIO_PD1
 

CC1200 SPI and pins definitions

#define CC1200_SPI_DEV   SSI0
 
#define CC1200_MOSI_GPIO   GPIO_PB1
 
#define CC1200_MISO_GPIO   GPIO_PB3
 
#define CC1200_SCLK_GPIO   GPIO_PB2
 
#define CC1200_CSN_GPIO   GPIO_PB5
 
#define CC1200_RESET_GPIO   GPIO_PC7
 
#define CC1200_GPD0_GPIO   GPIO_PB4
 
#define CC1200_GPD2_GPIO   GPIO_PB0
 

Onboard micro-sd slot pin definitions

#define SDCARD_SPI_PARAM_SPI   SPI_DEV(1)
 
#define SDCARD_SPI_PARAM_CS   GPIO_PIN(0, 7)
 
#define SDCARD_SPI_PARAM_CLK   GPIO_PIN(2, 4)
 
#define SDCARD_SPI_PARAM_MOSI   GPIO_PIN(2, 5)
 
#define SDCARD_SPI_PARAM_MISO   GPIO_PIN(2, 6)
 
#define SDCARD_SPI_PARAM_POWER   GPIO_PIN(0, 6)
 
#define SDCARD_SPI_PARAM_POWER_AH   false
 

Macro Definition Documentation

◆ BTN0_MODE

#define BTN0_MODE   GPIO_IN_PU

Definition at line 62 of file board.h.

◆ BTN0_PIN

#define BTN0_PIN   GPIO_PIN(0, 3)

Definition at line 61 of file board.h.

◆ CC1200_CSN_GPIO

#define CC1200_CSN_GPIO   GPIO_PB5

Definition at line 106 of file board.h.

◆ CC1200_GPD0_GPIO

#define CC1200_GPD0_GPIO   GPIO_PB4

Definition at line 108 of file board.h.

◆ CC1200_GPD2_GPIO

#define CC1200_GPD2_GPIO   GPIO_PB0

Definition at line 109 of file board.h.

◆ CC1200_MISO_GPIO

#define CC1200_MISO_GPIO   GPIO_PB3

Definition at line 104 of file board.h.

◆ CC1200_MOSI_GPIO

#define CC1200_MOSI_GPIO   GPIO_PB1

Definition at line 103 of file board.h.

◆ CC1200_RESET_GPIO

#define CC1200_RESET_GPIO   GPIO_PC7

Definition at line 107 of file board.h.

◆ CC1200_SCLK_GPIO

#define CC1200_SCLK_GPIO   GPIO_PB2

Definition at line 105 of file board.h.

◆ CC1200_SPI_DEV

#define CC1200_SPI_DEV   SSI0

Definition at line 102 of file board.h.

◆ LED0_MASK

#define LED0_MASK   (1 << 4)

Definition at line 40 of file board.h.

◆ LED0_OFF

#define LED0_OFF   (GPIO_D->DATA &= ~LED0_MASK)

Definition at line 45 of file board.h.

◆ LED0_ON

#define LED0_ON   (GPIO_D->DATA |= LED0_MASK)

Definition at line 44 of file board.h.

◆ LED0_PIN

#define LED0_PIN   GPIO_PIN(3, 4)

Definition at line 36 of file board.h.

◆ LED0_TOGGLE

#define LED0_TOGGLE   (GPIO_D->DATA ^= LED0_MASK)

Definition at line 46 of file board.h.

◆ LED1_MASK

#define LED1_MASK   (1 << 7)

Definition at line 41 of file board.h.

◆ LED1_OFF

#define LED1_OFF   (GPIO_B->DATA &= ~LED1_MASK)

Definition at line 49 of file board.h.

◆ LED1_ON

#define LED1_ON   (GPIO_B->DATA |= LED1_MASK)

Definition at line 48 of file board.h.

◆ LED1_PIN

#define LED1_PIN   GPIO_PIN(1, 7)

Definition at line 37 of file board.h.

◆ LED1_TOGGLE

#define LED1_TOGGLE   (GPIO_B->DATA ^= LED1_MASK)

Definition at line 50 of file board.h.

◆ LED2_MASK

#define LED2_MASK   (1 << 6)

Definition at line 42 of file board.h.

◆ LED2_OFF

#define LED2_OFF   (GPIO_B->DATA &= ~LED2_MASK)

Definition at line 53 of file board.h.

◆ LED2_ON

#define LED2_ON   (GPIO_B->DATA |= LED2_MASK)

Definition at line 52 of file board.h.

◆ LED2_PIN

#define LED2_PIN   GPIO_PIN(1, 6)

Definition at line 38 of file board.h.

◆ LED2_TOGGLE

#define LED2_TOGGLE   (GPIO_B->DATA ^= LED2_MASK)

Definition at line 54 of file board.h.

◆ MTD_0

#define MTD_0   mtd_dev_get(0)

Default MTD device.

Definition at line 126 of file board.h.

◆ RF_SWITCH_2_4_GHZ

#define RF_SWITCH_2_4_GHZ   gpio_clear(RF_SWITCH_GPIO)

Definition at line 87 of file board.h.

◆ RF_SWITCH_GPIO

#define RF_SWITCH_GPIO   GPIO_PD2

Definition at line 85 of file board.h.

◆ RF_SWITCH_SUB_GHZ

#define RF_SWITCH_SUB_GHZ   gpio_set(RF_SWITCH_GPIO)

Definition at line 86 of file board.h.

◆ RF_SWITCH_TOGGLE

#define RF_SWITCH_TOGGLE   gpio_toggle(RF_SWITCH_GPIO)

Definition at line 88 of file board.h.

◆ SDCARD_SPI_PARAM_CLK

#define SDCARD_SPI_PARAM_CLK   GPIO_PIN(2, 4)

Definition at line 118 of file board.h.

◆ SDCARD_SPI_PARAM_CS

#define SDCARD_SPI_PARAM_CS   GPIO_PIN(0, 7)

Definition at line 117 of file board.h.

◆ SDCARD_SPI_PARAM_MISO

#define SDCARD_SPI_PARAM_MISO   GPIO_PIN(2, 6)

Definition at line 120 of file board.h.

◆ SDCARD_SPI_PARAM_MOSI

#define SDCARD_SPI_PARAM_MOSI   GPIO_PIN(2, 5)

Definition at line 119 of file board.h.

◆ SDCARD_SPI_PARAM_POWER

#define SDCARD_SPI_PARAM_POWER   GPIO_PIN(0, 6)

Definition at line 121 of file board.h.

◆ SDCARD_SPI_PARAM_POWER_AH

#define SDCARD_SPI_PARAM_POWER_AH   false

Definition at line 122 of file board.h.

◆ SDCARD_SPI_PARAM_SPI

#define SDCARD_SPI_PARAM_SPI   SPI_DEV(1)

Definition at line 116 of file board.h.

◆ SHUTDOWN_EN_GPIO

#define SHUTDOWN_EN_GPIO   GPIO_PD1

Definition at line 95 of file board.h.