circuitpython/ports/stm32/boards/VCC_GND_F407VE/board_init.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
167 B
C
Raw Normal View History

#include "py/mphal.h"
void VCC_GND_F407VE_board_early_init(void) {
// set SPI flash CS pin high
mp_hal_pin_output(pin_A4);
mp_hal_pin_write(pin_A4, 1);
}