9 lines
218 B
C
9 lines
218 B
C
|
#include "py/mphal.h"
|
||
|
|
||
|
void NUCLEO_F767ZI_board_early_init(void) {
|
||
|
// Turn off the USB switch
|
||
|
#define USB_PowerSwitchOn pin_G6
|
||
|
mp_hal_pin_output(USB_PowerSwitchOn);
|
||
|
mp_hal_pin_low(USB_PowerSwitchOn);
|
||
|
}
|