STM32F407: USART1(3) 8E1/8O1 not work
Posted on May 31, 2016 at 14:24Tx -> Rx: I dont receive in Rx that I send to Tx.What I do wrong?
Ask questions, find answers, and share insights on STM32 products and their technical features.
Posted on May 31, 2016 at 14:24Tx -> Rx: I dont receive in Rx that I send to Tx.What I do wrong?
Posted on May 25, 2016 at 10:23Hi, I enabled WDT in STM32F407 controller and I have a very tight loop which is resetting the flag. Here is the code RCC_APB1PeriphClockCmd(RCC_APB1Periph_WWDG, ENABLE); WWDG_SetPrescaler(WWDG_Prescaler_8); ...
Posted on May 30, 2016 at 16:17 I am working with the Discovery Development Board and a custom-made PCB with anSTM32F405 microcontroller. My 2 projects are very similar and usually I use the custom-made board, but when I need to probe or measure...
Posted on May 19, 2016 at 21:44The LowPassFilter code seems to be producing transients whenever the cutoff frequency changes rapidly from fully open (1.0f) to fully closed (<0.04f).Is there a way to debug the operations of the processors hardware FP...
Posted on May 30, 2016 at 08:55I am working on stm32f103rbt6 controller, I require 4 UARTs but this controller having only 3 UARTs so I am trying for software UART,I have attached my program file here, can anyone help me for writting code. ...
Posted on May 31, 2016 at 13:38Good day,I am trying to read sinus from audio line in.But I see that I could only read higher value of my amplitude, here is the example:http://s33.postimg.org/i5ew1ozgf/sin.jpgMy source code:#define IO_PIN GPIO_...
Posted on May 31, 2016 at 05:59Hello everyone! I use to stm32f4-discovery kit. because I was careless, I used PB2( BOOT 1) as GPIO( external intterup line 2). and now I can't load code for chip. what i can do to save it? Thanks for read !!!
Posted on May 31, 2016 at 11:02#include < main.h > #define Led_Green GPIO_Pin_13 #define Led_Red GPIO_Pin_14 void LED_Config(void) { GPIO_InitTypeDef GPIO_Init_Var={0}; RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOG, ENABLE); GPIO_Init_Var.GPIO_Pin = G...
Posted on May 27, 2016 at 14:57Is it possible to use baud rate divisor less than 1? i.e. 1/16 - USART_BRR = 0x01I did not find any information about it in STM32F4 RFM. #uart-usart-baud
Posted on May 30, 2016 at 16:28The STM32F7 onboard DAC is only 12 bits. I only need mono audio input. Suppose I drive the left ADC input directly and the right from an op amp gain stage of say x16 and then combine the lowest 4 bits of R with left-...