mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
boards/nucleo-f091: unified LED defines
This commit is contained in:
parent
74cea9a3ff
commit
000fae0e17
@ -19,40 +19,13 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "board.h"
|
#include "board.h"
|
||||||
#include "cpu.h"
|
#include "periph/gpio.h"
|
||||||
|
|
||||||
static void leds_init(void);
|
|
||||||
|
|
||||||
void board_init(void)
|
void board_init(void)
|
||||||
{
|
{
|
||||||
/* initialize the boards LEDs */
|
|
||||||
leds_init();
|
|
||||||
/* initialize the CPU */
|
/* initialize the CPU */
|
||||||
cpu_init();
|
cpu_init();
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/* initialize the boards LEDs */
|
||||||
* @brief Initialize the boards on-board LEDs
|
gpio_init(LED0_PIN, GPIO_DIR_OUT, GPIO_NOPULL);
|
||||||
*
|
|
||||||
* The LED initialization is hard-coded in this function.
|
|
||||||
* As the LED is soldered onto the board it is fixed to
|
|
||||||
* its CPU pins.
|
|
||||||
*
|
|
||||||
* The green LED is connected to pin PA5
|
|
||||||
*/
|
|
||||||
static void leds_init(void)
|
|
||||||
{
|
|
||||||
/* enable clock for port GPIOA */
|
|
||||||
RCC->AHBENR |= RCC_AHBENR_GPIOAEN;
|
|
||||||
/* set output speed to 50MHz */
|
|
||||||
LED_GREEN_PORT->OSPEEDR |= 0x00000c00;
|
|
||||||
/* set output type to push-pull */
|
|
||||||
LED_GREEN_PORT->OTYPER &= ~(0x00000020);
|
|
||||||
/* configure pin as general output */
|
|
||||||
LED_GREEN_PORT->MODER &= ~(0x00000c00);
|
|
||||||
LED_GREEN_PORT->MODER |= 0x00000400;
|
|
||||||
/* disable pull resistors */
|
|
||||||
LED_GREEN_PORT->PUPDR &= ~(0x00000c00);
|
|
||||||
/* turn all LEDs off */
|
|
||||||
LED_GREEN_PORT->BRR = 0x00c0;
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user