cancel
Showing results for 
Search instead for 
Did you mean: 

List of STM32 Firmware Library control defines

danieljohansson9
Associate
Posted on May 16, 2011 at 11:37

List of STM32 Firmware Library control defines

2 REPLIES 2
Andrew Neil
Evangelist
Posted on May 17, 2011 at 14:35

''I can't find it in the windows helpfile accompanying the fwlib''

 

Unfortunately, I think that's all there is.

:(
danieljohansson9
Associate
Posted on May 17, 2011 at 14:35

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