STM32/STM8技术william hill官网
直播中

王婷

7年用户 1034经验值
私信 关注
[问答]

请问STM32F030的SWD口如何做普通IO

STM32F030的SWD口如何做普通IO,不够用差一个,不知如何设置,发现和F1系列不同。一直没找到方法。

回帖(12)

谭子薇

2018-11-29 08:53:16
只要把SWD功能禁用就可以了
举报

李鑫赢

2018-11-29 09:00:44
GPIO_PinRemapConfig(GPIO_Remap_SWJ_Disable,ENABLE);
举报

李鑫赢

2018-11-29 09:17:54
RCC中开启AFIO时钟
举报

王婷

2018-11-29 09:34:33
引用: uwyywefwd 发表于 2018-11-29 10:33
GPIO_PinRemapConfig(GPIO_Remap_SWJ_Disable,ENABLE);

F0不是103
举报

王婷

2018-11-29 09:52:43
引用: uwyywefwd 发表于 2018-11-29 10:50
RCC中开启AFIO时钟

/**
  * @brief  Writes data to the specified GPIO data port.
  * @param  GPIOx: where x can be (A or B) to select the GPIO peripheral.
  * @param  GPIO_PinSource: specifies the pin for the Alternate function.
  *          This parameter can be GPIO_PinSourcex where x can be (0..15).
  * @param  GPIO_AF: selects the pin to used as Alternate function.
  *          This parameter can be one of the following value:
  *            @arg GPIO_AF_0: WKUP, EVENTOUT, TIM15, SPI1, TIM17,MCO, SWDAT, SWCLK, TIM14,
  *                            USART1, CEC, IR_OUT, SPI2
  *            @arg GPIO_AF_1: USART2, CEC, Tim3, USART1, IR_OUT,EVENTOUT, I2C1, I2C2, TIM15
  *            @arg GPIO_AF_2: TIM2, TIM1, EVENTOUT, TIM16, TIM17
  *            @arg GPIO_AF_3: TS, I2C1, TIM15, EVENTOUT
  *            @arg GPIO_AF_4: TIM14, I2C1 (only for STM32F0XX_LD and STM32F030X6 devices)
  *            @arg GPIO_AF_5: TIM16, TIM17
  *            @arg GPIO_AF_6: EVENTOUT
  *            @arg GPIO_AF_7: COMP1 OUT, COMP2 OUT
  * @note   The pin should already been configured in Alternate Function mode(AF)
  *         using GPIO_InitStruct->GPIO_Mode = GPIO_Mode_AF
  * @note   Refer to the Alternate function mapping table in the device datasheet
  *         for the detailed mapping of the system and peripherals'alternate
  *         function I/O pins.
  * @retval None
  */
void GPIO_PinAFConfig(GPIO_TypeDef* GPIOx, uint16_t GPIO_PinSource, uint8_t GPIO_AF)
{
  uint32_t temp = 0x00;
  uint32_t temp_2 = 0x00;

  /* Check the parameters */
  assert_param(IS_GPIO_LIST_PERIPH(GPIOx));
  assert_param(IS_GPIO_PIN_SOURCE(GPIO_PinSource));
  assert_param(IS_GPIO_AF(GPIO_AF));

  temp = ((uint32_t)(GPIO_AF) << ((uint32_t)((uint32_t)GPIO_PinSource & (uint32_t)0x07) * 4));
  GPIOx->AFR[GPIO_PinSource >> 0x03] &= ~((uint32_t)0xF << ((uint32_t)((uint32_t)GPIO_PinSource & (uint32_t)0x07) * 4));
  temp_2 = GPIOx->AFR[GPIO_PinSource >> 0x03] | temp;
  GPIOx->AFR[GPIO_PinSource >> 0x03] = temp_2;
}


默认是 GPIO_AF_0,是swd,那做普通io呢?
举报

王婷

2018-11-29 10:11:38
引用: 曹志静1314 发表于 2018-11-29 10:25
只要把SWD功能禁用就可以了

f030
举报

谭子薇

2018-11-29 10:21:16

这个还真没有试过,各种配置方式都试试,把引脚配置成复用模式,试试。
举报

张玉英

2018-11-29 10:28:33
Once the SW I/O is released by the user software, the GPIO controller takes control of these
pins. The reset states of the GPIO control registers put the I/Os in the equivalent states:
• SWDIO: input pull-up
• SWCLK: input pull-down
Having embedded pull-up and pull-down resistors removes the need to add external
resistors.

F0参考手册,如2楼所说,你需要释放掉SWD功能
举报

陈炜

2018-11-29 10:38:18
SWD脚复位后默认是调试脚,

把它做普通IO配置就好了。具体就是将GPIOX_MODER寄存器相关位做配置就好,比STM32F1配置更为简洁。
举报

池鹄展

2018-11-29 10:46:50
SWD在CUBE里设置很简单的,但是你下次下载程序就只能用串口。
举报

池鹄展

2018-11-29 11:04:46
用cube来设置很简单
举报

lee_st

2018-11-29 13:26:21
禁用即可,但是以后烧录就麻烦了
举报

更多回帖

发帖
×
20
完善资料,
赚取积分