I am using an STM32F103Z MCU. I cannot get Port B Pin 4 to work as a normal GPIO output pin. I do the setup just like other GPIO pins that are working, but Port B Pin 4 just goes high and stays high, GPIO_ResetBits() does not work.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-02-27 1:53 PM
This discussion is locked. Please start a new topic to ask your question.
1 ACCEPTED SOLUTION
Accepted Solutions
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-02-27 2:03 PM
// Disable the JTAG portion of the Serial Wire JTAG Debug Port SWJ-DP
GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable, ENABLE);
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-02-27 2:03 PM
// Disable the JTAG portion of the Serial Wire JTAG Debug Port SWJ-DP
GPIO_PinRemapConfig(GPIO_Remap_SWJ_JTAGDisable, ENABLE);
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2020-02-28 1:51 PM
Thank you, This works great. Much appreciated Chris
