circuitpython/ports/stm32/boards/VCC_GND_F407ZG/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_F407ZG_board_early_init(void) {
// set SPI flash CS pin high
mp_hal_pin_output(pin_C4);
mp_hal_pin_write(pin_C4, 1);
}