01dd7804b8
This is to keep the top-level directory clean, to make it clear what is core and what is a port, and to allow the repository to grow with new ports in a sustainable way.
11 lines
273 B
C
11 lines
273 B
C
#include "py/mphal.h"
|
|
#include "genhdr/pins.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);
|
|
}
|