Ask questions, find answers, and share insights on STM32 products and their technical features.
Hi,I am interfacing to a TI device that requires a 100us delay between each I2C byte and I can't think of any way that doesn't involve "hacking", i.e. using timer delays, interrupts, etc. Is there a more elegant way to do it using the ST I2C implemen...
I tried all the walkthrough's form the internet, but couldn't connect the STM32F446VE i.e. the b96bf446ve nucleo board.I know form other boards that one can use an external programmer. The ST programmer is the only device that's recognized.Can someon...
I try to generete interrupt when TIM->CNT = OverVal my code below ;I am so confused, thanks for nowvoid Init(){ TIM_ICInitStructure.TIM_Channel = TIM_Channel_1; //TIM_Channel_3 TIM_ICInitStructure.TIM_ICPolarity = TIM_ICPolarity_Falling; TIM_ICIni...
Here's my code for re-configuring the SPI1 peripheral, but after that the data being corrupted (even if I re-configure the same size of the previous configuration):void AppSpiReconfig(void * ulRxBuffAddr, void * ulTxBuffAddr, unsigned long ulSize){ L...
hii i have a stm32h753 nucleo board , witch have a user button connected to pc 13 , i am trying to implement printing on console when a button is pressed by using interrupted call back that is generated from the button press , i looked at the user ma...
I want to write simple c=a+b level code that will always give the same result, but use the maximum of possibilities.Only 4 direct execution options are available for your architecturetypedef int8_t vi8_4 __attribute__ ((vector_size(4),aligned(4)));ty...
I am using stm32f0. TIM1 CH1 is external clock source. Code counts every falling edge of oscilator. When Update event is generete, I count event. Thats why I found passing time
I'm very new to the STM32 and am trying to set up TIM2 to trigger a dma input capture to memory. I have been pouring over examples and the STM32F302R8 ref manual but am not there yet.What is working is I am inputting 30Hz ref signal on both PA5 and ...
Hi,I am trying to use timer pwm outputs for Timer4, Timer2 and Timer1 bolcks. I am using initial functions below, but i can not see pwm signals from outputs. What is wrong with the codes below ? Any advises./**TIMER2 PWM SETUPS**/ RCC_APB2PeriphC...