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

USB Audio Class example(s)

Posted on May 16, 2017 at 00:50I'm using an STM32F3 series device and I can find examples for CDC, MSC, DFU and HID (the latter 2 being duplicated all over the place) but no examples of the Audio class in the STM32Cube_FW_F3_V1.8.0 HAL library.I fou...

STM32F303K8 CAN(controller area network) RECEIVE PROBLEM

Posted on April 26, 2017 at 12:08Hello i am working with CAN of STM32F303K8 i can transmit the data but i can't receive data  i get the fonction receive returne HAL_TIMEOUT i am working with 1M and  32 clock my code /* Includes ---------------------...

abdou si by Associate III
  • 782 Views
  • 2 replies
  • 0 kudos

Hanning window library

Posted on May 10, 2017 at 16:37HI,Currently, I am working with FFT and I want to implement Hanning window for good results.status = arm_cfft_radix4_init_f32(&FFT_InitStruc,FFT_SIZE,0,1); arm_cfft_radix4_f32(&FFT_InitStruc, fl32ADCRaw);Is FFT done wi...

stm32f7xxx memory card - TCM.

Posted on May 14, 2017 at 01:12The description of the stm32f746bg series has lines:and L1-cache: 4KB data cache and 4KB instruction cacheSRAM: 320KB (including 64KB of data TCM RAM for critical real-time data) + 16KB of instruction TCM RAM (for crit...

STM32l151RBT6A SPI issue

Posted on March 20, 2017 at 13:57Hi all,I am not able to get SPI working on stm32l151rbt6a. I have posted my initialization code below./* SPI1 init function */void MX_SPI1_Init(void){     GPIO_InitTypeDef GPIO_InitStruct;     SPI_HandleTypeDef hspi1...

TIM1 - USART1 pin conflict - how to solve?

Posted on May 15, 2017 at 10:43Hello dear forum,I am using F103RC to drive 2 DC motorsThats why I need to use both TIM1 and TIM8However TIM1_CH2 is at the same pin as the USART1_TXI dont use and init USART1_TX pin becouse I only use RX input of USAR...

Resolved! STM32L1 and STM32L4 Series LSE 32,768Khz Startup Problem

Posted on May 03, 2017 at 23:26Hi all,I have 3 boards with 3 different MCUs, one with STM32L053R8T6, one with STM32L152RCT6, and one with STM32L443RCT6.All use same 32,768Khz LSE crystal and 12pF caps. But only STM32L053 works fine when LSE is turne...

Resolved! Can I use HSE oscillator clock for bxCAN?

Posted on April 28, 2017 at 11:37Hi,Currently, I'm working on a project where LCD, Camera and CAN are involved.I'm using STM32F769I-EVAL platform for my work with 'SetupSTM32CubeMX-4.19.0' installation and 'STM32Cube_FW_F7_V1.6.0' firmware package.A...

stm32f uart init bug

Posted on May 13, 2017 at 03:50this   if((Timeout == 0U)||((HAL_GetTick() - Tickstart ) > Timeout))  should be if((Timeout == 0U)||((HAL_GetTick() - Tickstart ) < Timeout))  static HAL_StatusTypeDef USART_WaitOnFlagUntilTimeout(USART_HandleTypeDef *...