STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Stm32 Virtual Com port Device is not detected in some Windows 10 PC.Is there any way to manully force the windows 10 os to use its native Virtual com port driver??

My device use STM32L0 controller and Hal USB Device CDC class is implemented in it. When connected to Windows 10 OS the "Device description request Failed" message is shown. But on updated windows 10 OS it is working fine as it should. So is there a...

ASoma by Associate
  • 708 Views
  • 3 replies
  • 1 kudos

Opus Example for STM32F4 series?

Hi, guys. I'm curious whether anybody has tested the Opus Audio CODEChttp://opus-codec.org/using STM32F4 MCUs.I have both the NUCLEO-F446RE board & STM32F4 DISCOVERY board.Is there an example to play music using Opus?Any extra video demo for Opus usi...

Composite Device COM PORT

Hi there,i managed the get a working composite device with working driver files. I can choose between all combinations of cdc,hid and msc.But i can't connect to my serial com port. I want to use this com port as a uart bridge but it's not working bec...

arduo by Senior
  • 239 Views
  • 0 replies
  • 1 kudos

Problem with SDMMC1 and 4bit Wide Bus

Hello,I have a STM32H743ZI with FreeRTOS and SDMMC1 initialized from MxCube 5.0.1.I'm currently using the FreeRTOS-FAT.When i try to call a HAL_SD_WriteBlocks_DMA() with 4bit wide bus, I always get "HAL_SD_ERROR_DATA_TIMEOUT" in the IRQ Handler. With...

Using HAL outside of main.c

Ok, another noob question....I can use the following line of code in the main.c with no issues#define Green_LED_OFF HAL_GPIO_WritePin(GPIOA, GPIO_PIN_8, GPIO_PIN_RESET); // Green offBut when I want to use it in another .c file such as foo.c I get th...