Improve doxygen documentation

This commit is contained in:
Henrik Stickann
2022-05-08 03:11:12 +02:00
parent 5caeef64a2
commit 75ef8a9dc6
9 changed files with 156 additions and 28 deletions

View File

@@ -1,5 +1,6 @@
/**
* @brief UART interface definition.
* @file
* @brief Printable UART interface definition.
*/
#ifndef STA_PRINTABLE_UART_HPP
#define STA_PRINTABLE_UART_HPP
@@ -23,11 +24,14 @@ namespace sta
};
/**
* @brief Interface for UART.
* @brief Printable interface for UART.
*/
class PrintableUART
{
public:
/**
* @param intf UART instance
*/
PrintableUART(UART * intf);
/**