Question

Is there a good description of the STM432f4xx libraries along the lines of the really good one available for the stm32f2xx library, or is the 32f4xx entirely self documented through comments and examples?

It's great to have this available all in one doc, as opposed to wading through the library tree. It looks like much of what applies to the framework is already in the f2xx description, but I just wanted to be sure, despite my fruitless searches.

Was it helpful?

Solution

Yes, here are the most helpful sources (imo) other than the ref manual, and source. 'Tis all about formatting:

CMSIS Library

Github STM32F4 Standard Peripheral Lib Documentation

Reference Manuals

Programming Manual

Note the use of DOXYGEN to generate some sources

OTHER TIPS

The source comments are in Doxygen markup. Doxygen is an open source documentation generator and source code analyser, you can use it to generate the documentation yourself in various formats such as HTML, LaTex and PDF. The library itself includes this documentation as a CHM (compiled HTML help file).

The best descriptions of the library functions are found in the source files themselves. Other than that, you can turn to the reference manual. It'll give you a lower, register-level understanding of how to configure your microcontroller.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top