STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

I2C busy flag

Posted on August 05, 2013 at 12:10 Hello, I am trying to connect two boards using I2C. I have already configured one as master but whenever I send the start condition the I2C bus is busy. Maybe I am wrong in the initialization of the GPIO...

edgar by Associate II
  • 681 Views
  • 4 replies
  • 0 kudos

NVIC - Defining software interrupt

Posted on August 08, 2013 at 08:37 Hi , I want to add a new interrupt to the system , i know that the NVIC can support up to 256 interrupts , currently in my evaluation boad ( stm32f4g-eval) there are only 81 used . So i added a new on...

Dual ADC

Posted on August 08, 2013 at 10:46Hi, i am using STM32F303 and I use ADC1 and ADC3, sometimes ADC3 doeset work Do I need to enable dual adc or is this recquired when ADC1 and ADC2 are used tnx

marko by Associate II
  • 268 Views
  • 0 replies
  • 0 kudos

Why is DMA reducing my pulse width?

Posted on August 01, 2013 at 03:43Howdy,     So I enabled DMA1, on STM32F103, copying two 32-bit words (set and clear PF.15) from flash to GPIOF->BSRR at 25kHz.  I then run this code with all interrupts disabled while(1) {     GPIOF->BSRR = 1 << 14;...

bikejog by Associate II
  • 2633 Views
  • 20 replies
  • 0 kudos

STM32F4 Free running 32-bit timer/counter

Posted on August 07, 2013 at 20:14Can someone please point me in the right direction to use TIM2 or TIM5 as just a free running 32-bit counter, ticking at 1us, that I can read anywhere in my pgm.  No I/O or interrupts desired. None of the examples i...

USART NOT receiving nothing

Posted on August 07, 2013 at 07:12Im using usart2 and i know its sending data but will not receive im using :rx_data = USART_ReceiveData(USART2);to save the data then using a while(rx_data > 0 ) { do stuff}any suggestions about why its not receiving...

timothy by Associate II
  • 984 Views
  • 6 replies
  • 0 kudos

Use of Ember Pro Stack

Posted on August 07, 2013 at 12:43Hello Is it possible to transmit and receive audio packet using ember pro stack with STM32w108cb RF micro-controller .? If yes then please tell me the process. Shakti.

programming problem after Remapping PB3 & PB4

Posted on August 07, 2013 at 10:35Hello, I equipped the Header of the STM32F100RB-VL Dicovery Board with some LEDs. But then I recognised that PB3 and PB4 are not working, because they have to be remapped. Since this remapping I`m not able to flash ...

Is there STM32F051x8 in stop mode has a 1ms timer

Posted on August 05, 2013 at 09:43Hi,I am using the STM32F051x8,I want a timer which could interrupt every 1ms in the stop mode?But I have found the TIM can't work in the stop mode,and the RTC just happen interrupt every second. How can I do?Thanks?...