You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FAQ.md
+23Lines changed: 23 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,29 @@ void loop() {
49
49
}
50
50
```
51
51
52
+
## Debug
53
+
54
+
Debug can not be functional using generic when some features are enabled. Example, with Generic L486 with USB enabled. When USB is initialized, it configures all the pins available in the `PinMap_USB_OTG_FS`:
In this case `PA_13` is `JTMS-SWDIO` preventing debug to be functional.
58
+
To avoid this, it is required to redefine the `PinMap_USB_OTG_FS` array to remove useless pins as explained [here](https://github.com/stm32duino/Arduino_Core_STM32/wiki/Custom-definitions#example-for-the-adc-pinmap-of-the-nucleo_f103rb), like this:
0 commit comments