User Activity

Hello,I am using STM32F446RE controller to communicate with TLC2578 old ADC converter through SPI communication.To initialize the ADC first CS should be LOW and 16 clock - SCLK cycles need to issued.How to start the SPI clock without data transfer.Wi...
Hello We are using STM32WB55xx STM32WB35xx Nucleo board with STM Ble stack. We want to transfer data around 2Mbytes after connection.After connection, we are only able to transfer around 100Kbytes of data after that connection is getting lost.What i...
HelloI am using ST7735 TFT display with STM32l4.All the spi configuration is correct. I am able to get all fonts, shapes.But failed to display BMP image. I used BIN2c.exe to convert stlogo.bmp to convert into C array, but image color is correpted.How...
Hi We are using stm32f446ze mcu with 24 Mhz crystal and freertos in project.currenty USB cdc communication is getting about 500 kbps and want achieve more than this.ST documents says that max speed is about 1Mbps. Is there any reference or source or ...
#include "main.h"#include "uartDma.h"UART_HandleTypeDef huart2;DMA_HandleTypeDef hdma_usart2_tx;void uartStart(void){ MX_DMA_Init(); MX_USART2_UART_Init(); uint8_t pData[] = "This is Polling\r\n"; uint8_t pdata[] = "This is Dma\r\n"; HAL_UART_Tran...