STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

HAL DMA I2S Bug

Posted on August 26, 2016 at 16:48 There is a bug in HAL in full duplex I2S. The internal callback in the library disables all further DMA requests even if circular buffering is enabled. This is incorrect as it requires that an application call ...

pstanley by Associate
  • 358 Views
  • 1 replies
  • 0 kudos

Charge-only USB Device?

Posted on April 04, 2017 at 04:05I need to be able to de-activate the USB CDC port and yet still be able to negotiate for power to charge a battery.  The use case here is that I have a device with both Bluetooth SPP and USB CDC and I want to allow o...

Can I start task inside task on RTOS ?

Posted on April 02, 2017 at 09:52Everyone,Can I start task inside task on RTOS? so after task 1 is finished, go to task 2, finish task 2 return to task one,Here's what I have written, any advices ?thanks/* StartDefaultTask function */static void Sta...

How to write to USB PHY ULPI register ?

Posted on April 01, 2017 at 09:25Hello, how do you write to an USB PHY configuration register via ULPI ? I would like to swap DP and DM pins from Microchip USB3343 by setting bit 1 of register 0x39. http://ww1.microchip.com/downloads/en/DeviceDoc/33...

[bug report] Bug in HAL (SPL) delay function

Posted on March 12, 2014 at 16:05Setup: I've just generated code for stm32f407 using the latest STM32CubeMX. Here's the generated code for delay function in file stm32f4xx_hal.c:void HAL_Delay(__IO uint32_t Delay) {   uint32_t timingdelay;     tim...

amomum by Associate III
  • 1395 Views
  • 13 replies
  • 1 kudos

printf with HAL_UART_Transmit_IT?

Posted on November 09, 2016 at 10:34 I am new to the hal libraries (but not stm32 devices) and struggle to see howHAL_UART_Transmit_IT is expected to be used for something simple like printf over uart. Take a blocking example: void...

toby2 by Senior
  • 5159 Views
  • 30 replies
  • 0 kudos

stm32cube plugin for qtcreator

Posted on May 03, 2014 at 13:19Hello, I think I have a problem similar to the one described in the post ''STM32CubeMX as Eclipse plugin on Linux 64 machine''. As I'm really reluctant to use eclipse, I would like to know if a plugin for Qtcreator is ...

Resolved! FreeRTOS and SDIO setting ?

Posted on March 24, 2017 at 14:38Everyone,I tried to run SDIO with RTOS, but never got luck,Any ideas why ?If I disabled RTOS, SDIO can run properly but if I enabled it, SDIO is stopped running..Thanks#freertos #sdio

Debug problems with STM32F030

Posted on March 26, 2017 at 21:35 Hello. I'm trying to debug code on STM32F SWD debug wire is enabled. I can get into debug mode! The problem is that the code blocks whenever a HAL_Delay() occurs. I think the problem is related to systick...