Scott Seidman
Scott Seidman

Reputation: 265

Description of STM32f4xx standard peripheral library

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.

Upvotes: 2

Views: 4730

Answers (3)

bunkerdive
bunkerdive

Reputation: 2101

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

Upvotes: 3

Clifford
Clifford

Reputation: 93476

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).

Upvotes: 2

Fiddling Bits
Fiddling Bits

Reputation: 8861

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.

Upvotes: 1

Related Questions