Build doxygen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2025-04-13 11:36 PM
Hi,
when building the Doxygen documentation locally, numerous warnings appear. Especially, errors like this:
stm32g4xx_hal_driver/Inc/stm32g4xx_ll_lptim.h:605: warning: Found unknown command '@rmtoll'
stm32g4xx_hal_driver/Inc/stm32g4xx_ll_lptim.h:601: warning: found documented return type for LL_LPTIM_ConfigOutput that does not return anything
stm32g4xx_hal_driver/Inc/stm32g4xx_hal.h:431: warning: unable to resolve reference to 'SYSCFG_FASTMODEPLUS_PB8' for \ref command
Is there a Doxygen configuration for HAL?
What needs to be changed/added in the Doxygen default settings?
Thanks
Thomas
Solved! Go to Solution.
- Labels:
-
Documentation
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2025-04-14 12:11 AM - edited ‎2025-04-14 12:24 AM
Do you have a configuration file for the doxygen project? "rmtoll" is a custom macro, likely it means a connector between Reference Manuals (RM) and functions in the Low level drivers (LL). The LL layer has longer, more human friendly names.
These custom macros can invoke custom actions, like look-ups in external databases and so on.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2025-04-14 12:11 AM - edited ‎2025-04-14 12:24 AM
Do you have a configuration file for the doxygen project? "rmtoll" is a custom macro, likely it means a connector between Reference Manuals (RM) and functions in the Low level drivers (LL). The LL layer has longer, more human friendly names.
These custom macros can invoke custom actions, like look-ups in external databases and so on.
