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

2019-07-14 15:38发布

STM32F030的SWD口如何做普通IO,不够用差一个,不知如何设置,发现和F1系列不同。一直没找到方法。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
11条回答
uwyywefwd
1楼-- · 2019-07-14 22:27
 精彩回答 2  元偷偷看……
uwyywefwd
2楼-- · 2019-07-14 23:23
RCC中开启AFIO时钟
一巷清苑
3楼-- · 2019-07-15 01:45
uwyywefwd 发表于 2018-11-29 10:33
GPIO_PinRemapConfig(GPIO_Remap_SWJ_Disable,ENABLE);

F0不是103
一巷清苑
4楼-- · 2019-07-15 02:23
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呢?
一巷清苑
5楼-- · 2019-07-15 03:52
曹志静1314 发表于 2018-11-29 10:25
只要把SWD功能禁用就可以了

f030
曹志静1314
6楼-- · 2019-07-15 09:40
 精彩回答 2  元偷偷看……

一周热门 更多>