limifrog-v1/include/board.h¶
Board specific definitions for the limifrog-v1 board.
-
LED0_PIN¶ 1
GPIO_PIN(PORT_C, 3)
-
LED0_PORT¶ 1
(GPIOC)
-
LED0_MASK¶ 1
(1 << 3)
-
LED0_ON¶ 1
(LED0_PORT->BSRR = LED0_MASK)
-
LED0_OFF¶ 1
(LED0_PORT->BSRR = (LED0_MASK << 16))
-
LED0_TOGGLE¶ 1
(LED0_PORT->ODR ^= LED0_MASK)
-
XTIMER_WIDTH¶ 1
(16U)
-
LIS3MDL_PARAM_I2C¶ 1
(I2C_DEV(1))
-
LIS3MDL_PARAM_ADDR¶ 1
(0x28)
-
void
board_init(void)¶ Initialize board specific hardware, including clock, LEDs and std-IO.