簡體   English   中英

STM32F407 UART在終端上產生垃圾

[英]STM32F407 UART gives garbage on terminal

我剛開始使用STM32f407 Discovery開發板進行冒險。 我正在使用最新的CoIDE穩定版本,並使用了最新的工具鏈/庫。

我設法編寫了以下代碼,以便在開發板上使用USART1

int main(void){

GPIO_InitTypeDef  GPIO_InitStructure;   // Definicja struktury do inicjalizacji PINOW
USART_InitTypeDef USART_InitStructure;

// Initialize pins as alternating function
GPIO_InitStructure.GPIO_Pin     = GPIO_Pin_9 | GPIO_Pin_10;
GPIO_InitStructure.GPIO_Mode    = GPIO_Mode_AF;
GPIO_InitStructure.GPIO_OType   = GPIO_OType_PP;
GPIO_InitStructure.GPIO_PuPd    = GPIO_PuPd_UP;
GPIO_InitStructure.GPIO_Speed   = GPIO_Speed_2MHz;
GPIO_Init(GPIOA, &GPIO_InitStructure);

GPIO_PinAFConfig(GPIOA, GPIO_PinSource9, GPIO_AF_USART1);
GPIO_PinAFConfig(GPIOA, GPIO_PinSource10, GPIO_AF_USART1);

// Modify USART_InitStructure for non -default values , e.g.
// USART_InitStructure.USART_BaudRate = 38400;
USART_InitStructure.USART_BaudRate              = 9600;
USART_InitStructure.USART_WordLength            = USART_WordLength_8b;
USART_InitStructure.USART_StopBits              = USART_StopBits_1;
USART_InitStructure.USART_Parity                = USART_Parity_No;
USART_InitStructure.USART_HardwareFlowControl   = USART_HardwareFlowControl_None;
USART_InitStructure.USART_Mode                  = USART_Mode_Tx|USART_Mode_Rx;
USART_Init(USART1 ,&USART_InitStructure);
USART_Cmd(USART1 , ENABLE);


while(1)
{
    while (USART_GetFlagStatus(USART1 , USART_FLAG_TXE) == RESET);
    USART1 ->DR = (uint16_t)(45 & 0x01FF);

    Delay(0x3FFFFF);
}

}

我還通過設置HSE和其他時鍾詳細信息來確保正確配置了時鍾

    #if !defined  (HSE_VALUE)
  #define HSE_VALUE    ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

並且

    /************************* PLL Parameters *************************************/
/* PLL_VCO = (HSE_VALUE or HSI_VALUE / PLL_M) * PLL_N */
#define PLL_M      8
#define PLL_N      336

/* SYSCLK = PLL_VCO / PLL_P */
#define PLL_P      2

/* USB OTG FS, SDIO and RNG Clock =  PLL_VCO / PLLQ */
#define PLL_Q      7

/******************************************************************************/

在控制台中,我只是收到垃圾,我做了以下操作以確保設置正確:-檢查了USB-RS232轉換器-在轉換器和STM32板之間進行了切換-切換了的轉換器-使用STM32CubeMX進行了比較以生成代碼,並且看起來是一致的(邏輯明智的做法:))

從我的初學者的角度來看,這有點像“ showstopper” :(我似乎無法找到這個的根本原因

任何幫助,將不勝感激


更新1:為了找到根本原因,我決定嘗試其他USART模塊之一。 以下是我針對USART3的代碼,而這是一個開箱即用的方法,它會導致我在最初的問題中錯誤地初始化USART1?

int main(void)

{

  GPIO_InitTypeDef GPIO_InitStructure;
  USART_InitTypeDef USART_InitStructure;

  /* Enable GPIO clock */
  RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOC, ENABLE);

  /* Enable UART clock */
  RCC_APB1PeriphClockCmd(RCC_APB1Periph_USART3, ENABLE);

  /* Connect PXx to USARTx_Tx*/
  GPIO_PinAFConfig(GPIOC, GPIO_PinSource10, GPIO_AF_USART3);

  /* Connect PXx to USARTx_Rx*/
  GPIO_PinAFConfig(GPIOC, GPIO_PinSource11, GPIO_AF_USART3);

  /* Configure USART Tx as alternate function  */
  GPIO_InitStructure.GPIO_OType = GPIO_OType_PP;
  GPIO_InitStructure.GPIO_PuPd = GPIO_PuPd_UP;
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;

  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
  GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
  GPIO_Init(GPIOC, &GPIO_InitStructure);

  /* Configure USART Rx as alternate function  */
  GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF;
  GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11;
  GPIO_Init(GPIOC, &GPIO_InitStructure);

  USART_InitStructure.USART_BaudRate = 9600;
  USART_InitStructure.USART_WordLength = USART_WordLength_8b;
  USART_InitStructure.USART_StopBits = USART_StopBits_1;
  USART_InitStructure.USART_Parity = USART_Parity_No;
  USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
  USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;

  /* USART configuration */
  USART_Init(USART3, &USART_InitStructure);

  /* Enable USART */
  USART_Cmd(USART3, ENABLE);

  SysTick_Config(SystemCoreClock / 1000);

  while(1)
  {


    for (int var = 45; var < 128; var++)
    {
        USART_SendData(USART3, var);

        Delay_SysTick(500); // 1 sek
    }



  }

}


解決方案:經過大量的挖掘和嘗試后,USART1似乎會與USB組件發生沖突,並且電容器與傳輸鏈路發生沖突, 從而在ST論壇上做出回應

我希望我以前能在文檔中找到它。

希望這對某人有幫助,並感謝大家的幫助

該板上的USART1(TX引腳)具有電容器,該電容器會與流量發生沖突。 它在ST論壇上被提及

當發送方的波特率與接收方的波特率不同時,通常會在終端上造成垃圾。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM