You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
244 B
9 lines
244 B
#include "py/mphal.h"
|
|
|
|
void STM32L476DISC_board_early_init(void) {
|
|
// set SPI flash WP and HOLD pins high
|
|
mp_hal_pin_output(pin_E14);
|
|
mp_hal_pin_output(pin_E15);
|
|
mp_hal_pin_write(pin_E14, 1);
|
|
mp_hal_pin_write(pin_E15, 1);
|
|
}
|
|
|