958fa74521
And update the GPIO init for NUCLEO_H743ZI to consistently use the mphal functions.
9 lines
218 B
C
9 lines
218 B
C
#include "py/mphal.h"
|
|
|
|
void NUCLEO_H743ZI_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);
|
|
}
|