have tried with STLink V2 and it's works fine. In the manual of ST-Link V3 they are not specifying any particular jumper settings for SWD. With a multimeter I cannot detect Vcc of 3.3V between the VCC and GND of SWD pins. Please find the below pictur...
I have tried to create a PWM signal using Timer1 and then feed that to Timer2 running in Input Capture mode. The Timer1 PWM output is working fine and verified using DSO. But in case of Timer2 the Input Capture interrupt call back void HAL_TIM_IC_Cap...
Below error is throwing in Manjaro Linux when I try to upload the program to the board. The project is building successful. Installed libncurses from AUR as well as the offiicial repository, but no use.
Few people in other community helped me to figure out the problem. It was as below:Instead of HAL_TIM_IC_Start() , I should use HAL_TIM_IC_Start_IT() since I'm dealing with Input Capture Interrupt. This solved the issue. The tutorial I followed used...
Already did some research on STM32 forums as well google before posting and try to find the similar issue on this forum. Most of the post they forgot to call the below function for Timers to work properly in main().. HAL_TIM_PWM_Start(&htim1,TIM_CHAN...