Posted on January 09, 2014 at 18:37 The original post was too long to process during our migration. Please click on the attachment to read the original post.
Posted on September 30, 2013 at 13:14
hello all and thanks for your help,
I'm working with stm32f4 discovery board and I will like to use two different timers. For the timer TIM3 after a long work I set certain parameters so I can have my des...
Posted on August 14, 2014 at 13:09Dear forum,I design 2 small boards which then I plug along with the discovery (STM32F4) to make them work together. After connecting the USB cable to the board, LD8 turned ON and is constantly ON even tough now noth...
Posted on January 14, 2014 at 19:12
You can try something like this (I made something similar and is working for me):
receiving part:
void USART1_IRQHandler(void)
{
if( USART_GetITStatus(USART1, USART_IT_RXNE) ) //if I receive somethin...
Posted on January 10, 2014 at 12:14Hello,thanks your suggestion were helpful to understand more. To code is working fine now. I also change from TC to TXE (I take a look on the datasheet and seems that there is not such a big difference by using one...