STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

GDB Connection Timeout

Posted on December 21, 2013 at 14:53I used to the St-write to burn .bin to the STM32F4 and saw the message which I expected. Now, I hope to understand how GPIO init. Hence, I use OpenOCD and arm-none-eabi-gdb to do that. Here, it is my process.$ min...

gapryun by Associate II
  • 1333 Views
  • 3 replies
  • 0 kudos

STM32F3-Discovery and ITM port printf

Posted on December 21, 2013 at 22:28Hello, I try to use the ITM printf funtionality with my STM32F3-Discovery board. I follow the explanation of the STM youtube channel http://www.youtube.com/watch?v=lUPSqfO4ISk but I can't get it to work. I use kei...

jtredez by Associate
  • 782 Views
  • 2 replies
  • 0 kudos

I2C Busy Flag problem

Posted on December 21, 2013 at 13:35hello.I want to write byte to the sensör with I2C so write this code void MPU6050_I2C_Init(){        // RCC Configuration        RCC_HCLKConfig(RCC_SYSCLK_Div2);        RCC_PCLK1Config(RCC_HCLK_Div1);        RCC_P...

Use User button of STM32F4 as encoder mode (Timer)

Posted on December 21, 2013 at 00:09HeyIn order to use the user button of stm32f4 discovery as encoder mode, I was configured timer2 as follows but it didn't work:   void configureEncoder(void) { RCC_AHB1PeriphClockCmd(RCC_AHB1Periph_GPIOA, ENABL...

STM32 USART2 per DMA Problem

Posted on August 30, 2012 at 16:41I have a problem that maybe someone can help with. I've spend the last few days on this and I just don't understand why it's not working. I have a STM32 where I want to send out a buffer over USART 2 using DMA to a ...

robin2399 by Associate II
  • 1632 Views
  • 7 replies
  • 0 kudos

MicroXplorer download

Posted on December 19, 2013 at 20:21I can't seem to find the MicroXplorer download anywhere.  I can find the page, but down at the bottom there is no button or clickable item to actually get the software. I really hate asking this question...but I j...

STM32 I2C problem

Posted on December 18, 2013 at 19:46hello.I want to communicate with sensör with I2C.First I must send the sensor register address to sensor.And then I receive the data from this sensor register.So first I configure I2C peripheral as master transmit...

TIMERS used as DELAY Function For Beginners on STM32F3

Posted on December 19, 2013 at 13:28Function works for TIM6 basic timer used as delay on STM32F303 , with suitable modifications can work on any STM8,32 variantsvoid TIMER_DELAY(uint16_t value){ RCC->APB1ENR |= RCC_APB1Periph;//value is 0x10        ...