From d6815f82852ecbd1466673d82818e5a81bb4131e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Sun, 2 Aug 2020 22:29:18 +0200 Subject: [PATCH] Documentation: Breathe: Detect c/h files correctly as C Files and not C++ --- doc/source/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/source/conf.py b/doc/source/conf.py index 17dbbe6..71d3a95 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -65,6 +65,9 @@ html_static_path = ['_static'] breathe_projects = { "Reflow Controller Firmware": "../build/_doxygen/xml/" } + +breathe_domain_by_extension = { "h" : "c", + "c" : "c" } breathe_default_project = "Reflow Controller Firmware" breathe_default_members = ('members', 'undoc-members')