User Activity

I'm trying to use CAN2 on STM32F469I-DISCO board. I connected SN65HVD232 to CN12 connector 9 (PB5 RX) and 10 (PB13 TX). On pin 9 i can see with Saleae proper CAN data frame with baud 125000. But uC doesn't receive any frame and not generating IT.I tr...
Posted on May 11, 2018 at 13:05I'm using STM32F030R8 @ 40MHz and TIM6. I want to wait for some time without blocking main function, so i used TIM6 - code below:TIM6->CR1 |= TIM_CR1_ARPE | TIM_CR1_OPM;//auto-reload, one-pulse TIM6->PSC = 4000-1;//100...
Posted on March 30, 2018 at 20:42I'm trying to get working code from STM32CubeMX on STM32F746G-DISCO board. I'm using LwIP TCP/IP stack (which works fine - obtains IP address over DHCP) and STemWIN GUI library and there is the problem. LTDC has been...
Posted on May 31, 2016 at 08:32 Hi, I'm trying to read register in my accelerometer FXOS8700. I'm using code below on STM32L476: uint8_t FXOS8700_ReadReg(uint8_t reg) { uint8_t value=0; HAL_I2C_Master_Transmit(&hi2c1, FXOS8700CQ_SLA...