STM32-usart-test

所属分类:处理器开发
开发工具:C/C++
文件大小:704KB
下载次数:336
上传日期:2012-02-28 19:41:36
上 传 者james03
说明:  基于stm32f103c8的两串口透传测试程序
(Based on the stm32f103c8 two serial through the test procedures)

文件列表:
STM32串口测试\ByteQeue.c (3730, 2011-12-03)
STM32串口测试\ByteQueue.h (1206, 2011-11-26)
STM32串口测试\Lst\stm32f10x_vector.lst (36649, 2012-02-03)
STM32串口测试\Lst\STM32_Test.map (104266, 2011-12-30)
STM32串口测试\Lst\STM32_串口1-2数据跳转_115200.map (102226, 2012-02-03)
STM32串口测试\Lst\TTL_DTU.map (199342, 2011-12-22)
STM32串口测试\Lst\TTL_DTU1222.map (100246, 2011-12-22)
STM32串口测试\main.c (21308, 2012-02-03)
STM32串口测试\Main.h (3691, 2011-12-22)
STM32串口测试\note.txt (1794, 2010-09-03)
STM32串口测试\Obj\byteqeue.d (2101, 2012-02-03)
STM32串口测试\Obj\byteqeue.o (182540, 2012-02-03)
STM32串口测试\Obj\ExtDll.iex (19, 2012-02-03)
STM32串口测试\Obj\LED_STM3210E-EVAL.plg (12163, 2011-11-16)
STM32串口测试\Obj\LED_STM3210E-EVAL_sct.Bak (479, 2011-11-15)
STM32串口测试\Obj\main.d (2012, 2012-02-03)
STM32串口测试\Obj\main.o (214568, 2012-02-03)
STM32串口测试\Obj\mdlat.d (2017, 2011-12-22)
STM32串口测试\Obj\mdlat.o (262824, 2011-12-22)
STM32串口测试\Obj\mdlat.__i (191, 2011-12-22)
STM32串口测试\Obj\mdlgprs.d (2092, 2011-12-21)
STM32串口测试\Obj\mdlgprs.o (182840, 2011-12-21)
STM32串口测试\Obj\mdlsms.d (2054, 2011-12-21)
STM32串口测试\Obj\mdlsms.o (211864, 2011-12-21)
STM32串口测试\Obj\memqueue.d (2100, 2011-12-21)
STM32串口测试\Obj\memqueue.o (182596, 2011-12-21)
STM32串口测试\Obj\STM3210E-EVAL.plg (2558, 2011-11-15)
STM32串口测试\Obj\stm32f10x_it.d (2313, 2012-02-03)
STM32串口测试\Obj\stm32f10x_it.o (260892, 2012-02-03)
STM32串口测试\Obj\stm32f10x_vector.d (46, 2012-02-03)
STM32串口测试\Obj\stm32f10x_vector.o (5668, 2012-02-03)
STM32串口测试\Obj\stm32f10x_vector._ia (255, 2012-02-03)
STM32串口测试\Obj\STM32_Test.axf (162728, 2011-12-30)
STM32串口测试\Obj\STM32_Test.htm (60550, 2011-12-30)
STM32串口测试\Obj\STM32_Test.lnp (406, 2011-12-30)
STM32串口测试\Obj\STM32_Test.plg (3834, 2011-12-30)
STM32串口测试\Obj\STM32_Test.sct (479, 2011-12-22)
STM32串口测试\Obj\STM32_Test.tra (1293, 2011-12-30)
STM32串口测试\Obj\STM32_串口1-2数据跳转_115200.axf (159492, 2012-02-03)
STM32串口测试\Obj\STM32_串口1-2数据跳转_115200.hex (23292, 2012-02-03)
... ...

/******************** (C) COPYRIGHT 2008 STMicroelectronics ******************** * File Name : readme.txt * Author : MCD Application Team * Version : V2.0.1 * Date : 06/13/2008 * Description : Description of the USART Interrupts Example. ******************************************************************************** * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME. * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT, * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. *******************************************************************************/ Example description =================== This example provides a basic communication between USART1 and USART2 using interrupts. USART2 sends TxBuffer2 to USART1 which sends TxBuffer1 to USART2. The data received by USART1 and USART2 are stored respectively in RxBuffer1 and RxBuffer2. The data transfer is managed in USART1_IRQHandler and USART2_IRQHandler in stm32f10x_it.c file. USART1 and USART2 configured as follow: - BaudRate = 9600 baud - Word Length = 8 Bits - One Stop Bit - No parity - Hardware flow control disabled (RTS and CTS signals) - Receive and transmit enabled Directory contents ================== platform_config.h Evaluation board specific configuration file stm32f10x_conf.h Library Configuration file stm32f10x_it.h Interrupt handlers header file stm32f10x_it.c Interrupt handlers main.c Main program Hardware environment ==================== This example runs on STMicroelectronics STM3210B-EVAL and STM3210E-EVAL evaluation boards and can be easily tailored to any other hardware. To select the STMicroelectronics evaluation board used to run the example, uncomment the corresponding line in platform_config.h file. + STM3210B-EVAL - Connect a null-modem female/female RS232 cable between CN5 and CN6. - Note: in this case USART2 Tx and Rx pins are remapped by software on PD.05 and PD.06 respectively. + STM3210E-EVAL - Connect a null-modem female/female RS232 cable between CN12 and CN8. How to use it ============= In order to make the program work, you must do the following : - Create a project and setup all your toolchain's start-up files - Compile the directory content files and required Library files : + stm32f10x_lib.c + stm32f10x_usart.c + stm32f10x_gpio.c + stm32f10x_nvic.c + stm32f10x_rcc.c + stm32f10x_flash.c - Link all compiled files and load your image into target memory - Run the example ******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE******

近期下载者

相关文件


收藏者