aboutsummaryrefslogtreecommitdiff
path: root/stmhal/boards/NETDUINO_PLUS_2/board_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'stmhal/boards/NETDUINO_PLUS_2/board_init.c')
-rw-r--r--stmhal/boards/NETDUINO_PLUS_2/board_init.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/stmhal/boards/NETDUINO_PLUS_2/board_init.c b/stmhal/boards/NETDUINO_PLUS_2/board_init.c
deleted file mode 100644
index 085034b2d..000000000
--- a/stmhal/boards/NETDUINO_PLUS_2/board_init.c
+++ /dev/null
@@ -1,24 +0,0 @@
-#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);
-}