Ask questions, find answers, and share insights on STM32 products and their technical features.
Posted on April 19, 2017 at 09:29 Hi all Recently, I created a Win32 application to convert a bitmap (.bmp) file into a header file (.h) in order to display it in mySTM32F746G-DISCO discovery board. Everything works fine but the bitmap (24 bit de...
#include <stdint.h>#define RCC_CFGR_BASE_ADDR 0x40012800UL#define RCC_CFGR_REG_OFFSET 0x04UL#define RCC_CFGR_REG_ADDR (RCC_CFGR_BASE_ADDR + RCC_CFGR_REG_OFFSET )#define RCC_APB2ENR_REG_OFFSET 0x18UL#define RCC_APB2ENR_REG_ADDR (RCC_CFGR_BASE_A...
Hi,I would like to create a new CubeIDE project with a IOC file (from scratch) for B-L475E-IOT01A2 that enables WiFi. I know that there are working examples (for example WiFi_HTTP_Server that works fine) but these projects do not have IOC files. I ha...
Hi,I tried to debug my code into my custom board controller (STM32F030RCT6) through STM32f0 Discovery. when I try to debug, I got the error ''No source available for ''0x8000f24'' So please tell me how to fix this error. Thanks
HiI am using STM32F103C8T6 Microcontroller and tring to configure ADC injected channel with Timer 2 PWM in Register level. but i don't know how to enable the ADC injected channel. help meThanks in advance!
Hello Community,I am making a new project based on an ultra-low power application with a STM32L4A6VGT6. But the problem I am facing is with its inventory.Can anyone tell what is the lead time for this Part Number?Thanks in Advance.
I am using STM32F031 family microcontroller and want to configure the ADC.My application requires current sensing and voltage sensing. For critical measurement like current during PWM ON time, I am using the ADC in external trigger mode, triggered by...
Hello, where can I find the MTBF values?
Hello,Currently I am working on a 16-bit parallel interface where I need to write to and read from the same port. For that I am using GPIO_Init LL library every time I do so. Is this the right method? Will the port data also get reset while doing so....