2011-05-16 02:37 AM
List of STM32 Firmware Library control defines
2011-05-17 05:35 AM
''I can't find it in the windows helpfile accompanying the fwlib''
Unfortunately, I think that's all there is.:(
2011-05-17 05:35 AM
That's my conclusion as well.
The specific watchdog debug (stall WWDG in debug) I was looking for wasn't a define anyway. It's a function in the DBGMCU.c that needs to be called from user code similar to that of setting the APB clocks. For STM32F2X Series: DBGMCU_APB1PeriphConfig(DBGMCU_WWDG_STOP,ENABLE); //Turn off when debugging For STM32F1X Series: DBGMCU_Config(DBGMCU_WWDG_STOP, ENABLE); //Turn off when debugging