From 7bbae3a62484fe327b86148f67f0198639dfcbb6 Mon Sep 17 00:00:00 2001 From: Jens True Date: Wed, 10 Nov 2021 10:36:14 +0000 Subject: [PATCH] Improve doxygen --- src/main.cpp | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 9b1c55b..1e72f8a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -10,10 +10,6 @@ * Arduino Style but still a .cpp file */ -/** - * \file - - */ #include "Arduino.h" @@ -21,9 +17,15 @@ #include "CommandHandler.h" #include "DisplayProxyMAX7456.h" -/// The display instance +/** + * @brief Instance of DisplayProxyMAX7456 + */ DisplayProxyMAX7456 display; -//The commandhandler needs a reference to the display instance +/** + * @brief The commandhandler needs a reference to a display instance + * + * @return CommandHandler + */ CommandHandler cmd_handler(&display); /**