User Activity

Hey,I'm working with STM32F303RET6.I'm having trouble transmitting data with SPI3 (PB3, PB4, PB5 and PA15).Before I'll post my code here, I want to say that I am also working with SPI2 (PB12, PB13, PB14 and PB15) with the exact same configuration on ...
Hey, I'm using STM32F303RET6 and need to implement UART communication via USART1 (PA9 as Tx and PA10 as Rx).I managed to print "Hello World" on my console,Which means Tx is working fine and my console is configured correctly, but couldn't receive byt...
Hey,I'm a beginner.I'm working with STM32F303RET6 and I'm trying to communicate with SST26VF064B (Flash) over SPI.This is how I configured my SPI (Using MXCuce):static void MX_SPI2_Init(void) {   /* USER CODE BEGIN SPI2_Init 0 */   /* USER CODE E...
 Hey,I'm working with TMP175AQDGKRQ1 (temperature sensor) which communicates over I2C.I've managed to read the temperature register by doing this static void Read_Temperature(unsigned char *buffer[2]) { HAL_I2C_Master_Transmit(&hi2c1, /*0x4B<<1*/TE...