2010-06-09 06:30 AM
USART Example code for STM32
2011-05-17 04:54 AM
Hi,
download the ST FWLibhttp://www.st.com/stonline/products/support/micro/files/stm32f10x_stdperiph_lib.zip
and go to ''STM32F10x_StdPeriph_Lib_V3.3.0\Project\STM32F10x_StdPeriph_Examples\USART\HyperTerminal_Interrupt'' to find how to configure the USART to communicate with PC Use also the example in ''STM32F10x_StdPeriph_Lib_V3.3.0\Project\STM32F10x_StdPeriph_Examples\ADC\3ADCs_DMA'' to know how to use ADC in DMA mode... It should be enough for building a functional application. Cheers.2011-05-17 04:54 AM
Hello, thanks for your guide,
but i am still stuck on this with errors, I followed all things that includes in help file and IAR 5.3 is still getting errors.. if you have enough time.. please send working program ... please help me. I have Olimex STM32-103STK http://www.olimex.com/dev/stm32-103stk.html Best Regards Prasad2011-05-17 04:54 AM
''i am still stuck on this with errors''
Fixing build errors is an integral part of the software development process! Read each error message literally - it tells you what the problem is and, thus, what needs to be done to fix it; eg, if it says, ''x isun
defined'' then the solution is to define x! Also remember that one error early in the source code can easily lead to many consequent errors in the rest of the file; in the example above, because x was undefined, everything that attempts to use x will also cause an error! Therefore, you need to start by fixingthe first error in the file, and work on from there...