Add an Essential feature
Hello, Please add an empty function on HAL for other MCU's what doesn't have that functions.For example HAL_ICHACHE_Enable() for F1 series. This feature can help to easy porting to other series of MCUs.Thanks.
Hello, Please add an empty function on HAL for other MCU's what doesn't have that functions.For example HAL_ICHACHE_Enable() for F1 series. This feature can help to easy porting to other series of MCUs.Thanks.
I am working on a project where I need to synchronize a PWM signal generated by an STM32 microcontroller with an external signal. To achieve accurate synchronization, I believe I need to implement a drifting correction algorithm. I am seeking guidanc...
I am trying to implement the BLE stack (WB5 series) on an RTOS. I work with stm32wb5mm-dk evaluation board. I have a problem with the callback functions that are not being called in the new implementation. In an ideal world it would work like this : ...
Hello,I want to transfer my ADC Data, which is transfered with DMA, over UART to a host. /* USER CODE BEGIN Header */ /** ****************************************************************************** * @file : main.c * @brief ...
Hello Everyone, I am trying to establish Ethernet communication with STM32H743Bi controller in my custom board. Am using 3 port PHY from Microchip - KSZ8863RLL in RMII mode. I am generating the code using STM32CubeMX with the LwIP Stack and FreeRTOS....
Hello there.In my project, I am using LWIP with FreeRTOS at CMSISv1 and static memory allocation (configSUPPORT_STATIC_ALLOCATION = 1, configSUPPORT_DYNAMIC_ALLOCATION = 0). Is this a supported configuration? When I generate code, LWIP/Target/etherne...
Hi amazing comminity.. I have configured the adc for reading the internal temp and vref in the following way .. void MX_ADC_temp_Init(void) { /* USER CODE BEGIN ADC1_Init 0 */ /* USER CODE END ADC1_Init 0 */ ADC_ChannelConfTypeDef sConf...
The initialisation code generated (by CubeIDE v1.13.0) leaves both the transmitter and the receiver enabled!This is clearly not a valid state!See: https://community.st.com/t5/embedded-software-mcus/hal-uart-transmit-with-single-wire-half-duplex/m-p/5...
Hi Community!We're working with an STM32G0B1xx MCU and using USB PD v5.0.0 library from github (https://github.com/STMicroelectronics/stm32-mw-usbpd-core).I see here that USBPD_EXT_VDM = 0x1E is defined properly. However, when I use this with USBPD_D...
Hi, I am working on a project doing realtime FFT processing on an audio signal using an STM32H730 processor with the CMSIS FFT library. Currently trying to reduce latency through lower block size and higher overlap between FFTs, and looking for ways ...