User Activity

Hi, I'm using stm32f401RE.I set UART functions by using CubeMX and I'm trying to get data from UART and distinguish them.Here is the code.uint8_t RxBuffer[8]; HAL_UART_Receive_IT(&huart2, (uint8_t*)RxBuffer,sizeof(RxBuffer));​ // Writed in while loop...
I'm using uart fuctions with my board STM32F401RE.I don't use cts, rts (hardware flow control) and any receiving process.So I only transmitt some values to PC but I found that when I send a message constantly, suddenly it stop. I think it's related w...
Hi, I'm using stm32f401RE and making a code with cubeMX.So I set i2c3 and I was going to get some numbers from LSM303DLHC whic is accelo/gyro sensor.Here's the codes what I set.​#define Slave_addr (0x1E<<1)#define X_high 0x03#define X_low 0x04uint8_t...