User Activity

I’m using cubeIDE and openOCD to debug on stm32f103. The interrupts not called although the interrupt flags are set. I tried to use GDB and they works fine for the same SW on the same board.So how to make then working using openOCD?I checked google a...
I have set the TIM2 with the following code: __HAL_RCC_TIM2_CLK_ENABLE();   htim2.Instance = TIM2; htim2.Init.Prescaler = 0; htim2.Init.Period = 80; htim2.Init.RepetitionCounter = 0; htim2.Init.ClockDivision = TIM_CL...
Hi,In input PWM mode the counter starts and counts up with the initialization of the timer and at the first edge (trigger) it gives the time taken from initialization till the first trigger (which is wrong value at the first time only) and after that...
Hi,I’m using stm32f103 as slave transmitter with arduino uno as masterAs far as I understand the stm sends the data bytes correctly then waits for ack for the last data byte but arduino sends stop instead of ack, stopstm ack failure flag is raised an...