User Activity

is it possible to verify the FW version of MCU using stlink or some other stm tool ?i have programmed my MCU with FW version 5.5.5 and i would like to verify using JTAG or stlink or some other stm tool.someone told me it is factory protected you cann...
In the follwoing code i would like to use same interrupt multiple times in order to blink the 4 leds different time. i am storing the data in unint8_t ABB, i expect that each time i press the button the value in ABB is incremented but practically n...
as you can see below , i am writing a function from stm32 libraryvoid I2C_SendData(I2C_TypeDef* I2Cx, uint8_t Data)the question is, can i use it in main file likeI2C_SendData(I2C1,(uint8_t*)data_t);can i go from "uint8_t Data"" to ""(uint8_t*)data_t...
i would like to switch the LED ON (PB0) when ADC is from above threshold value ''if (adcValue >2275)''and in case of below threshold it should switch LED ON (PB1)code showing no error in Keil , if you see any erroe plz highlight me thanks.//********...
i would like to connect TIM3 to pin PA6 for PWM, using above command, but it is not working in Keil.more over i would to generate starting delay in PWM , i mean PWM signal should start with x delay How can i do above ? thanks