25 lines
772 B
C
25 lines
772 B
C
#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);
|
|
}
|