2017-01-24 06:09 AM
I have looked at PM0214 Programming manual for STM32F4 series for functions like GPIO_Write() and GPIO_ToggleBits() but they don't seem to be there. Is there a document that describes peripheral functions or does one need to search through the header files to find what functions are available?
Thanks,
jh
Solved! Go to Solution.
2017-01-24 02:37 PM
In the root of the 'library' you'll find a .chm
It's a doxygen-autovomit, but while that makes it hardly usable as true documentation, it does mention all the functions for sure.
JW
2017-01-24 06:28 AM
but they don't seem to be there
Where?
[EDIT]
Oh, now I see, in PM0214, sorry.
PM0214 is an abridged and slightly ST-customized version of the ARM's Cortex-M4 reference manual, thus describe the processor core, its working and the machine instructions together with their mnemonics and behaviour.
The functions you mentioned are in some of the ST's 'libraries' thus are not generically ARM-related, and are related to the peripherals and not to the core.
You should seek a list of functions a 'library' possesses/publishes in the manual to that 'library'.
JW
2017-01-24 02:23 PM
The only documentation I could find for the standard pereipheral library was STSW-STM32065 and it is only 1 page.
jh
2017-01-24 02:37 PM
In the root of the 'library' you'll find a .chm
It's a doxygen-autovomit, but while that makes it hardly usable as true documentation, it does mention all the functions for sure.
JW
2017-01-24 04:05 PM
doxygen-autovomit, I like that one!
Tis better'n nuttin I reckon.
Thanks,
jh