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

STM32F407 USB device without VBUS monitoring

Posted on February 04, 2016 at 14:21Hi all:    I am developing a device with an STM32F407. The device will always be powered by its own power supply. It will have a USB socket so that it can act as a ''USB device'' (a USB slave) that shows up as a s...

Diez.R. by Associate II
  • 1903 Views
  • 5 replies
  • 0 kudos

Why is my SPI-slave unable to generate any interrupts?

Posted on February 05, 2016 at 11:16 I am working with the ST-Link Discovery development board and I'm trying to get the SPI-bus working properly. I have configured SPI1 as my master and SPI2 as my slave and I connected wires in between them. I ...

arnold_w by Senior II
  • 593 Views
  • 4 replies
  • 0 kudos

CubeMX 4.12.0 broken LwIP

Posted on December 15, 2015 at 18:08It seems that in version 4.12.0 LwIP is broken. Code that worked with previous version was running without problems. Migration made code stop working. Tested on Stm32f407 discovery + expansion board (LAN8720).

STM32F7 GCC printf

Posted on July 17, 2015 at 04:14 Hello. I'm trying, for the first time in my life,to implement the printf/scanf functions on GCC. I managed to get the UART working in interrupt mode but somehow I can not do the easiest part. That is, I...

pedro by Associate II
  • 1347 Views
  • 6 replies
  • 0 kudos

NSS hardware control works on 407VG, but not on 405RG

Posted on February 04, 2016 at 10:18Hi, I want to use the hardware control of SPI3-NSS pin. I wrote a code for it on the Discovery board with the STM407VG and it works as intended. I use the drivers from the older Discovery bundle, not the STMCube. ...

denny2 by Associate II
  • 1354 Views
  • 9 replies
  • 0 kudos

Make use of the 64k CCM

Posted on January 11, 2012 at 11:08I've spent (too many) hours trying to figure out how to use the CCM for something useful. And with useful I mean easy access from my code written in C. I use GNU GCC, etc (the Yagarto toolchain). At first I thought...

jorgen2 by Associate
  • 7515 Views
  • 44 replies
  • 0 kudos

[HELP]Getting Started Using WATCHDOG

Posted on February 04, 2016 at 10:22 Hello, I just learn about stm32 programming. I am using STM32L053 discovery board. Right now i learn about how implementing watchdog in my code. Here my code int main(void) { /* Reset of all ...

dree86 by Associate II
  • 931 Views
  • 2 replies
  • 0 kudos

CubeMX upgrade clobbered my IAR project

Posted on December 01, 2015 at 22:59I upgraded from CubeMX 4.10.1 to 4.11.0.Problem 1 (maybe not a big deal)When I opened my project, it said I didn't have library version 1.3.0.  Which I do have.  It offered to migrate to 1.4.0 or download 1.3.0.  ...

Question about HAL_UART_Transmit?

Posted on February 04, 2016 at 14:56Guys, How can I print fr to UART ?  fr = f_open(&MyFile, ''STM32.TXT'', FA_CREATE_ALWAYS | FA_WRITE); HAL_UART_Transmit(&huart1, fr, 32, 1); // Debug I got this error : ..\Src\main.c(85): error:  #167: argument o...