I am trying to send a shift + U keypress to the screen every two seconds but it is just printing U's nonstop. Why isn't it delaying for two seconds? How do I properly debug stuff like this in the future? while (1) { hid_report_buffer[0] = 0x02;...
Hi, I am making a custom PCB. I am able to reliably flash it with a ST-Link and a Segger programmer. I also have a custom program that I use to flash the MCU using the UART. It has worked for years with other ST chips and partially worked with th...
Hello,I tried the poritng guide but it took forever to fix the missing and conflicting paths, and it's not clear what to compile and what not to.I want to have mqtt + lwip + mbedtls + PPPOS (I can start with Ethernet as a start).I can use other SDKs ...
I am new to ST Micro development boards and environment and want to learn FreeRTOS on STM boards. Which board should I buy to start with? Does ST micro provide development boards as a sample to learn ?Thank you,Prachi Patil
Hello,I try to play a sound using stm32h747i_discovery_audio.c. Initialization goes well void CAudioController::AudioOutInit() { BSP_AUDIO_Init_t audioOutInit; if (!audioOutInitDone_) { audioOutInit.Device = AUDIO_OUT_DEVICE_HEA...
The SVD file on the STM32G4 series resources page is out of date, hosting version 1.0 of the SVD file.It looks like the most recent SVD provided by the STMCubeIDE (generated 2/20/20 with version 1.2), has a number of errors. For example: SCB is liste...
Hello everyoneI am using an STM32F103RB. I would like to do some sound triangulation stuff. Therefore i have 3 microphones which are all connected to ADC1. I installed a watchdog. Everything works fine, and the callback is triggered for all 3 channel...
I was wondering how I can measure a pulse duration that is greater than the timer resolution of 16 or 32 bits. More specifically, I would like to record the absolute timestamp of captured input pulses on multiple timer channels. These timestamps can ...