summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/boards/NETDUINO_PLUS_2/board_init.c
blob: 085034b2d8fa3291d589e79a2a3f1c56fe57445a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include STM32_HAL_H

void NETDUINO_PLUS_2_board_early_init(void) {

    __GPIOB_CLK_ENABLE();

    // Turn off the backlight. LCD_BL_CTRL = PK3
    GPIO_InitTypeDef GPIO_InitStructure;
    GPIO_InitStructure.Speed = GPIO_SPEED_HIGH;
    GPIO_InitStructure.Mode = GPIO_MODE_OUTPUT_PP;
    GPIO_InitStructure.Pull = GPIO_PULLUP;

#if MICROPY_HW_HAS_SDCARD
    // Turn on the power enable for the sdcard (PB1)
    GPIO_InitStructure.Pin = GPIO_PIN_1;
    HAL_GPIO_Init(GPIOB, &GPIO_InitStructure);
    HAL_GPIO_WritePin(GPIOB, GPIO_PIN_1, GPIO_PIN_SET);
#endif

    // Turn on the power for the 5V on the expansion header (PB2)
    GPIO_InitStructure.Pin = GPIO_PIN_2;
    HAL_GPIO_Init(GPIOB, &GPIO_InitStructure);
    HAL_GPIO_WritePin(GPIOB, GPIO_PIN_2, GPIO_PIN_SET);
}