I have a USB device in HOST only mode using the CDC middleware to receive data from a barcode scanner set in RS232 mode. This is working accept for the enormous amount of (spurious) host channels interrupt USB_OTG_GINTSTS_HCINT. When I monitor the nu...
Hello,Could you share any examples of I2C communication implementation between STM32 MCU and sensor using Low-Layer (LL) API? I am using STM32L011 MCU and trying to read temperature values from temperature & humidity sensor HDC2080. I found a library...
Hi,I found a tutorial for using a BME280 sensor with I2C in HAL (https://controllerstech.com/bme280-with-stm32/).However, I need to use LL for it to fit into the rest of the program. The main part I'm having an issue with is below as I can't find a c...
Hi!The following was tested with Nucleo-H7ZI.I have generated a project with basic defenition of freeRTOS and LWIP.Once an ehternet cable is connected to the board the program collapses and goes to hardfault.after comparing the LWIP code from current...
I'm trying to use an STM32G491 in a voice recognition application. This is a single microphone, mono voice capture application. I'm using an NUGLEOG491RE and an MP34DT05-A microphone (1/4 STEVAL-MIC001V1) for testing. I need to convert the PDM stream...
I have project that I'm designing around an STM32F411 that 99%+ of the time will not have a USB device attached. I'd like to run at the top clock frequency of 100MHz. I see that I can not do that and use the USB device as it needs to run at 48MHz. I'...
I am working on STM32F107 to read MP34DT05-A mems mic on I2S. I have tried any configuration setting with `pdm2pcm.c` and i2s.c but nothing shows the expected result.The expected result is positive int value. This is what i did so far:i2s3 (SPI3) set...
I use a timer to wait for the next interrupt from the keyboard . The timeout is 30 Secs. The issue here is the HAL_TIM_Period_Elapsedcallback is getting called frequently , but I have set the timeout to be 30 Secs. Can anyone help me fix this issue ...