Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
boards/z1: fix driver params usage
  • Loading branch information
aabadie committed Feb 28, 2018
1 parent 2e066e8 commit c3fe5b6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions boards/z1/include/board.h
Expand Up @@ -105,17 +105,17 @@ extern "C" {
/** @} */

/**
* @brief Definition of the interface to the CC2420 radio
* @name Definition of the interface to the CC2420 radio
* @{
*/
#define CC2420_PARAMS_BOARD {.spi = SPI_DEV(0), \
.spi_clk = SPI_CLK_5MHZ, \
.pin_cs = GPIO_PIN(P3, 0), \
.pin_fifo = GPIO_PIN(P1, 3), \
.pin_fifop = GPIO_PIN(P1, 2), \
.pin_cca = GPIO_PIN(P1, 4), \
.pin_sfd = GPIO_PIN(P4, 1), \
.pin_vrefen = GPIO_PIN(P4, 5), \
.pin_reset = GPIO_PIN(P4, 6)}
#define CC2420_PARAM_CS GPIO_PIN(P3, 0)
#define CC2420_PARAM_FIFO GPIO_PIN(P1, 3)
#define CC2420_PARAM_FIFOP GPIO_PIN(P1, 2)
#define CC2420_PARAM_CCA GPIO_PIN(P1, 4)
#define CC2420_PARAM_SFD GPIO_PIN(P4, 1)
#define CC2420_PARAM_VREFEN GPIO_PIN(P4, 5)
#define CC2420_PARAM_RESET GPIO_PIN(P4, 6)
/** @} */

#ifdef __cplusplus
}
Expand Down

0 comments on commit c3fe5b6

Please sign in to comment.