STM32 MCUs Embedded software

Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! B-L4S5I-IOT01A - Record 16 kHz audio with DFSDM

Hi ST community,I am using the B-L4S5I-IOT01A board to record 3 sec of 16 kHz audio using DFSDM + DMA, and then transmit it offline via UART (after recording is complete). Since two MP34DT01-M microphones are connected to DFSDM Channel 2, I configure...

Saeid by Associate II
  • 360 Views
  • 2 replies
  • 0 kudos

Resolved! Issue with Byte pool for ThreadX

Hi, I am having issues with threadX tx_byte_allocate throwing a hard fault exception.  This only happens after some time of byte allocate and release. There are still plenty of available bytes according to the pool. But somehow in _tx_byte_pool_searc...

flaming_vines_0-1698198224139.png flaming_vines_1-1698198356976.png flaming_vines_2-1698199284021.png

Resolved! External SDRAM scattered loading issue

Hi,Master:MCU: stm32h743iiIDE:keilQuestion:There is a 32M external SDRAM, and the scatter file is as follows:LR_IROM1 0x08000000 0x00200000 { ; load region size_region ER_IROM1 0x08000000 0x00200000 { ; load address = execution address *.o...

Lyu.1 by Senior
  • 429 Views
  • 4 replies
  • 0 kudos

STM32L031K6 not outputting to serial terminal

Hi STM community,I’m working on a project with an STM32L031K6 paired with a Fujitsu FRAM MB85RC256V and an SHT31-D temperature/humidity sensor (on a breakout board). Both peripherals are on the I²C bus PB7 = SDA, PB6 = SCL.I’m trying to test the setu...

ramyg1 by Associate
  • 288 Views
  • 1 replies
  • 1 kudos

Resolved! UART with DMA and IT on STM32F446

Hi everybody,On my project, my µC receives data from a rapsberry pi on a serial bus.For another project, I've used this method : https://github.com/MaJerle/stm32-usart-uart-dma-rx-tx/blob/main/projects/usart_rx_idle_line_irq_F4/Src/main.c to receive ...

fab04 by Senior
  • 433 Views
  • 6 replies
  • 0 kudos

Resolved! ADC not working maybe a timer issue?

NUCLEO-F411REI am trying to read data from a ADXL1002Z.I have set up my board to use PA1 (A1 on the Arduino header) as ADC1_1/* adc.h */ #ifndef INC_ADC_H_ #define INC_ADC_H_ #include <stdint.h> void pa1_adc_init(void); uint32_t adc_read(void); vo...