Resolved! Unknown warnings
I am getting the above warning! I am unable to find what is causing the issue. If I comment the line number 5442, then no warnings or no errors. Help me resolve this issue.
Ask questions, find answers, and share insights on STM32 products and their technical features.
I am getting the above warning! I am unable to find what is causing the issue. If I comment the line number 5442, then no warnings or no errors. Help me resolve this issue.
Hi,For the SPI transfer APIs with suffix '_DMA'. In the transmit and receive alone ones, they checked 'hspi->hdmatx' and 'hspi->hdmarx' respectively. But in 'HAL_SPI_TransmitReceive_DMA()', it only check the 'hspi->hdmarx'. Funny :), and why? /* Pa...
hello together,I would use a Nucleo-32 board in my new project, the Nucleo-G431KB. In this project I would like to use the autobaud feature. Only I can't find an example, there are many USART examples but none with autobaud.Does anyone have an exampl...
Hi,I have I project (STM32H743IIT6) and I want to know if it's possible to have use a display 1280x800 24bpp? if it's not possible can I still have a display with a resolution of 1280x800 but with les bpp? Can I use a different MCU STM32H757XIH6 or a...
I am using CAN bus on my project and I am using NUCLEO-H753ZI board. The second board is nvdia orin nx. I also using CAN to USB converter to monitor the frames. When STM32 send the frame it is received on CAN to USB converter software without error ...
My program collects data using DMA in circular buffer. I have following procedure to "start" collecting data. // "reenable" measurment (enable results readout) void restart_measurment(void){ run=1; // DMA channel reset CLEAR_BIT(TIM1->DIER, TIM_DIER_...
Hello all,I am recently working in G0 series. Can someone help on how to make use of IWDG in STM32G070CBT6?Also share an example. Thanks in advance.
Hi,With GPDMA standard mode, I implemented timer triggered SPI DMA transfer. But the 'Size' argument of the 'HAL_SPI_TransmitReceive_DMA()' is 'unit16_t', this means it can only transfer 64k bytes once. Are there any method to transfer beyond this va...
Posted on January 23, 2014 at 12:00I have used the STM32 USB-FS-Device development kit examples to implement the custom HID and the DFU. It all works OK and I can upgrade the custom HID application from the DFU application using DfuSeDemo. The prob...
Hello ST Community,I’m working on a project with the Nucleo F767ZI development board, and I’m using CMSIS v2 for the RTOS. My goal is to implement UART communication where the system continuously receives characters until a newline character ("\n") i...