久久久久久久999_99精品久久精品一区二区爱城_成人欧美一区二区三区在线播放_国产精品日本一区二区不卡视频_国产午夜视频_欧美精品在线观看免费

 找回密碼
 立即注冊

QQ登錄

只需一步,快速開始

搜索
查看: 7329|回復: 1
打印 上一主題 下一主題
收起左側

stm32l053r8t6的串口收發送例程分析源碼下載

[復制鏈接]
跳轉到指定樓層
樓主
ID:98924 發表于 2015-12-9 01:17 | 只看該作者 回帖獎勵 |倒序瀏覽 |閱讀模式
  關于stm32l0 nucleo開發板上串口的例程只給了三個例程,這三個例程名字文件如下
        UART_TwoBoards_ComDMA,UART_TwoBoards_ComIT,UART_TwoBoards_ComPolling
        大概就是第一個利用DMA進行發送接收的,第二個就是中斷發送接收的,第三個就是用輪訓的方式實現的,由于三個例程的并沒有完全投入大部分精力去搞,所以說明顯得很淺顯,如果之前用過stm32f103系列的,那么這點淺顯的提示也可以提供一定的提示的,在這里我用了類似stm32f103的經常用的串口方式,就是串口發送不用中斷,中斷接收模式。
        官方例程原文
        @par Example Description 例程描述

This Example shows a UART transmission (transmit/receive) between 2
STM32L053R8-Nucleo boards in interrupt mode.這個例子展示了串口的中斷收發模式。

At the beginning of the main program the HAL_Init() function is called to reset
all the peripherals, initialize the Flash interface and the systick.
Then the SystemClock_Config() function is used to configure the system
clock (SYSCLK) to run at 32 MHz.
        一開始的主程序通過這個函數來復位所有外設,初始化flash系統滴答接口,為了滴答用可能跟flash有關。

Then 1st board is waiting for user button key to be pressed. Once done, data
are transmitted through uart2 in IT mode. 2nd board has configured Uart2
to receive data in IT mode. Once data received is completed, 2nd board also
transmit same characters on uart1 which will be received by 1st board.
Both boards compare transmitted data to received ones. If they are same, green
led2 is turn on, else led2 is turn Off.
第一塊板子等待按鍵按下后,數據發送給第二個板子,這里是IT模式,第二塊板子通過串口中斷接收到數據后,再將該數據發送給第一塊板子。如果數據
        一樣綠燈亮。
       
Warning: As both boards do not behave same way, "TRANSMITTER_BOARD" switch
compilation exists to determine either software is for 1st transmitter board or
2nd receiver (then transmitter) board. In other words, 1st board has to be
flashed with software compiled with switch enable, 2nd board has to be flashed
with software compiled with switch disable.

LED2 can be used to monitor the transfer status:
- LED2 turns ON on master board waiting user button to be pressed.
- LED2 turns OFF on master board waiting the transmission process is complete.
- LED2 turns ON when the transmission/reception process is correct.   

The UART is configured as follow:
    - BaudRate = 9600 baud  
    - Word Length = 8 Bits (7 data bit + 1 parity bit)
    - One Stop Bit
    - None parity
    - Hardware flow control disabled (RTS and CTS signals)
    - Reception and transmission are enabled in the time

@note USARTx/UARTx instance used and associated resources can be updated in "main.h"
file depending hardware configuration used.

@note When the parity is enabled, the computed parity is inserted at the MSB
position of the transmitted data.

@note Care must be taken when using HAL_Delay(), this function provides accurate
      delay (in milliseconds) based on variable incremented in SysTick ISR. This
      implies that if HAL_Delay() is called from a peripheral ISR process, then
      the SysTick interrupt must have higher priority (numerically lower)
      than the peripheral interrupt. Otherwise the caller ISR process will be blocked.
      To change the SysTick interrupt priority you have to use HAL_NVIC_SetPriority() function.
      
@note The application need to ensure that the SysTick time base is always set to 1 millisecond
      to have correct HAL operation.

@par Directory contents

  - UART/UART_TwoBoards_ComIT/Inc/stm32l0xx_hal_conf.h    HAL configuration file
  - UART/UART_TwoBoards_ComIT/Inc/stm32l0xx_it.h          IT interrupt handlers header file
  - UART/UART_TwoBoards_ComIT/Inc/main.h                  Header for main.c module  
  - UART/UART_TwoBoards_ComIT/Src/stm32l0xx_it.c          IT interrupt handlers
  - UART/UART_TwoBoards_ComIT/Src/main.c                  Main program
  - UART/UART_TwoBoards_ComIT/Src/stm32l0xx_hal_msp.c     HAL MSP module
  - UART/UART_TwoBoards_ComIT/Src/system_stm32l0xx.c      STM32L0xx system source file


@par Hardware and Software environment

  - This example runs on STM32L051xx, STM32L052xx, STM32L053xx STM32L062xx and
    STM32L063xx device lines RevZ
   
  - This example has been tested with STM32L053R8-Nucleo RevC and can be
    easily tailored to any other supported device and development board.

  - STM32L053R8-Nucleo RevC Set-up
    - Connect a wire between 1st board PA9 (pin 21 in CN10 connector) pin (Uart Tx)
      to 2nd board PA10 (pin 33 in CN10 connector) pin (Uart Rx)
    - Connect a wire between 1st board PA10 (pin 33 in CN10 connector) pin (Uart Rx)
      to 2nd board PA9 (pin 21 in CN10 connector) pin (Uart Tx)

  
@par How to use it ?

In order to make the program work, you must do the following :
- Open your preferred toolchain
- Rebuild all files and load your image into target memory
- Run the example
      
* <h3><center>&copy; COPYRIGHT STMicroelectronics</center></h3>
*/
實際上用官方的例程對于我這個用慣了stm32f103的庫函數的人來說,感覺很別扭,stm32l0的庫函數使用HAL 庫函數的很麻煩。
        在自己的配置中
        要將這個函數放到main循環中。
        HAL_UART_Receive_IT(&UartHandle, (uint8_t *)aRxBuffer1, 10);

stm32cubel0.zip:下載地址 鏈接:http://pan.baidu.com/s/1mhbXTcG 密碼:4p9x
分享到:  QQ好友和群QQ好友和群 QQ空間QQ空間 騰訊微博騰訊微博 騰訊朋友騰訊朋友
收藏收藏 分享淘帖 頂 踩
回復

使用道具 舉報

沙發
ID:171157 發表于 2017-3-16 10:47 | 只看該作者
感謝樓主好文
回復

使用道具 舉報

您需要登錄后才可以回帖 登錄 | 立即注冊

本版積分規則

手機版|小黑屋|51黑電子論壇 |51黑電子論壇6群 QQ 管理員QQ:125739409;技術交流QQ群281945664

Powered by 單片機教程網

快速回復 返回頂部 返回列表
主站蜘蛛池模板: caoporn视频在线 | 天天操网 | 狠狠干综合视频 | 色综合久| 欧美a∨ | 日本网站免费在线观看 | 日韩成人在线播放 | 免费av毛片 | 91麻豆精品国产91久久久更新资源速度超快 | 日本在线播放一区二区 | 亚洲国产精品日本 | 国产精品美女久久久久久久久久久 | 欧美一区二区三区视频在线播放 | 亚洲欧美在线观看 | 精品国产第一区二区三区 | 在线免费观看毛片 | 免费性视频 | 亚洲欧美视频 | 免费电影av | 成人在线精品 | 狠狠操狠狠干 | 国产一区二区在线免费观看 | 欧美国产精品一区二区三区 | 一区二区三区中文字幕 | 中文字幕高清在线 | 久久久久久久久久久久久9999 | 伊人久久免费 | 久久久国产一区二区三区 | 男女免费视频网站 | 中文字幕日韩av | 一区二区三区成人 | 国产欧美在线一区 | 一区二区三区四区电影 | 欧美一区二区在线免费观看 | 久久av影院| 中文字幕在线看人 | a级毛片国产 | 欧美一级欧美三级在线观看 | 美女在线一区二区 | 久久中文字幕一区 | 日韩免费网站 |