Posted on May 17, 2011 at 13:07Is there a full working IWDG example ? I tried this, but it seems not working (the watchdog doesn't reset the cpu). // cpu clock from external xtal (HSE) + RCC_PLLMul_8 RCC_LSICmd(ENABLE); while(RCC_GetFlagStatus(RCC_F...
Posted on May 17, 2011 at 13:07In the file stm32f10x_vector.c there is this initialization: /* Enable GPIOD, GPIOE, GPIOF and GPIOG clocks */ *(vu32 *)0x40021018 = 0x000001E0; Considerations: - it isn't clear why the library initializes only some GP...