Only applied to STM32 doc trees at present. Instead of declaring a group for "STM32blah" in the doc-blah.h files, and then trying to put all the common+specific peripheral code into those groups, (which is what led to the stub doxygen holder empty .c files) Just use a standard name like "Peripheral APIS" and place everything into that. Demonstrated by converting ADC and USART peripherals, which is definitely not complete, but it shows how to make things less magical, and less prone to copy/paste errors. Now, you can copy/paste and it will do the right thing, because everyone uses the same group names. This is also how to unify the mix of "STM32blah->Periphblah" and _also_ the dangling "periph_file" modules in doxygen, it merges them together properly, as they're intended to be really.
38 lines
631 B
C
38 lines
631 B
C
/** @mainpage libopencm3 STM32F2
|
|
|
|
@version 1.0.0
|
|
|
|
@date 14 September 2012
|
|
|
|
API documentation for ST Microelectronics STM32F2 Cortex M3 series.
|
|
|
|
LGPL License Terms @ref lgpl_license
|
|
*/
|
|
|
|
|
|
/** @defgroup peripheral_apis Peripheral APIs
|
|
* APIs for device peripherals
|
|
*/
|
|
|
|
/** @defgroup STM32F2xx STM32F2xx
|
|
Libraries for ST Microelectronics STM32F2xx series.
|
|
|
|
@version 1.0.0
|
|
|
|
@date 14 September 2012
|
|
|
|
LGPL License Terms @ref lgpl_license
|
|
*/
|
|
|
|
/** @defgroup STM32F2xx_defines STM32F2xx Defines
|
|
|
|
@brief Defined Constants and Types for the STM32F2xx series
|
|
|
|
@version 1.0.0
|
|
|
|
@date 14 September 2012
|
|
|
|
LGPL License Terms @ref lgpl_license
|
|
*/
|
|
|