board configuration for the Digilent PIC32 WiFire More...
board configuration for the Digilent PIC32 WiFire
See: http://store.digilentinc.com/chipkit-wi-fire-wifi-enabled-mz-microcontroller-board/ for more information on the board.
Definition in file board.h.
#include "periph_conf.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.
Functions | |
| void | board_init (void) |
| Board level initialization. | |
| #define | TICKS_PER_US (100) |
| Set how many increments of the count register per uS needed by the timer code. | |
LED pin configuration | |
| #define | LED1_PIN GPIO_PIN(PORT_G, 6) |
| #define | LED2_PIN GPIO_PIN(PORT_D, 4) |
| #define | LED3_PIN GPIO_PIN(PORT_B, 11) |
| #define | LED4_PIN GPIO_PIN(PORT_G, 15) |
| #define | LED1_MASK (1 << 6) |
| #define | LED2_MASK (1 << 4) |
| #define | LED3_MASK (1 << 11) |
| #define | LED4_MASK (1 << 15) |
| #define | LED1_ON (LATGSET = LED1_MASK) |
| #define | LED1_OFF (LATGCLR = LED1_MASK) |
| #define | LED1_TOGGLE (LATGINV = LED1_MASK) |
| #define | LED2_ON (LATDSET = LED2_MASK) |
| #define | LED2_OFF (LATDCLR = LED2_MASK) |
| #define | LED2_TOGGLE (LATDINV = LED2_MASK) |
| #define | LED3_ON (LATBSET = LED3_MASK) |
| #define | LED3_OFF (LATBCLR = LED3_MASK) |
| #define | LED3_TOGGLE (LATBINV = LED3_MASK) |
| #define | LED4_ON (LATGSET = LED4_MASK) |
| #define | LED4_OFF (LATGCLR = LED4_MASK) |
| #define | LED4_TOGGLE (LATGINV = LED4_MASK) |
Button pin configuration | |
| #define | BTN0_PIN GPIO_PIN(PORT_A, 5) |
| #define | BTN0_MODE GPIO_IN |
| #define | BTN1_PIN GPIO_PIN(PORT_A, 4) |
| #define | BTN1_MODE GPIO_IN |