Ask questions and find answers on STM32Cube packages, including HAL, LL and middleware, and expansion software.
osTimerId_t FreertosTimerHandle; const osTimerAttr_t FreertosTimer_attr = { .name = "FreertosTimer_LED" }; void RPS_print_console_Thread(void *argument) { /* Initialize watchdog Timer */ IWDG_Init(); StartLEDTimer(); while(1) { /* Re...
Friends, which algorithm do you use to control the LEDs in this structure? I need your ideas. I have prepared a table of the LEDs' turn on order.
Hello,I need the TCP Server with static IP address. I chose the Nx_TCP_Echo_Echo_Server example and NUCLEO-H723ZG board as a starting point. I use the STM32CubeIDE 1.19 with latest x-cube-azrtos-h7-v3-4-0 sample files. So I imported the Nx_TCP_Echo_E...
Hello,I'm working on an adapter USB to Ethernet and it is working only as a DEVICE. Now I would like to do the same but I want my STM to work as HOST.Is ST providing the same code stm32-mw-usb-device but for host?Thanks,G.
Dear ST, After signing the NDA agreement, I received STM32CubeExpansion_STL_G0_V2.0.0. I tried testing the projects for NUCLEO-G071RB in STM32CubeIDE 1.14.1, but to no avail. Edit: Removed screenshots as package is under NDA. After importing the ...
HelloI have two boards. Both of them are based on STM32 MCUs. One is a SPI master and the second is a SPI slave.Settings for master (STM32H723): mHandle.Init.Mode = SPI_MODE_MASTER; mHandle.Init.Direction ...
Hi,I have a STM32U535 microcontroller, I would like to send data to the display via SPI using GPDMA with LLI. The Frame buffer is about 150kB, so due to the fact that in a single transfer I can send max. 64kB of data, I want to divide it into three L...
Hello ST Community,I'm working on a project using STM32U595 with INMP441 MEMS microphone and NS4168 audio DAC. The system is configured to capture audio data from the microphone using SAI1_Block_A in DMA mode and then output it to the speaker using S...
Hi, all.I'm using STM32H747I-DISCO.I tried STemWinHelloWorld example, and "Hello world!" string was displayed on LCD properly.I added EXTI IRQ. And I confirmed when EXTI IRQ occur, it went to EXTI15_10_IRQHandler.Then I added proccess that display "H...