diff options
| author | Hierophect <hierophect@gmail.com> | 2019-12-10 15:13:11 -0500 |
|---|---|---|
| committer | Hierophect <hierophect@gmail.com> | 2019-12-10 15:13:11 -0500 |
| commit | 33233934e9be4fee31b6b8412234279ebb7d9ef3 (patch) | |
| tree | 3087d68fd9ee8c36fda3aa2ed080f389e57e46fb | |
| parent | 0e2a03e3bd0f43a07700a673d54552cb53561e92 (diff) | |
text fix
| -rw-r--r-- | ports/stm32f4/supervisor/usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm32f4/supervisor/usb.c b/ports/stm32f4/supervisor/usb.c index 95db0aafc..f327050f5 100644 --- a/ports/stm32f4/supervisor/usb.c +++ b/ports/stm32f4/supervisor/usb.c @@ -58,7 +58,7 @@ void init_usb_hardware(void) { /* Configure VBUS Pin */ GPIO_InitStruct.Pin = GPIO_PIN_9; GPIO_InitStruct.Mode = GPIO_MODE_INPUT; - GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Pull = GPIO_NOPULL; HAL_GPIO_Init(GPIOA, &GPIO_InitStruct); never_reset_pin_number(0, 9); |
