Rework doxygen comments

This commit is contained in:
Henrik Stickann 2022-04-12 16:38:19 +02:00
parent ccb15a640e
commit b2ae487b76
8 changed files with 23 additions and 5 deletions

View File

@ -1,3 +1,6 @@
/**
* @brief GPIO pin interface definitions.
*/
#ifndef STA_GPIO_PIN_HPP
#define STA_GPIO_PIN_HPP

View File

@ -1,5 +1,5 @@
/**
* @brief Implementations for SpiInterface and SpiDevice using HAL.
* @brief Implementations for `SpiInterface` and `SpiDevice` using HAL.
*
* Define **STA_HAL_SPI_ENABLE** in `<sta/config.hpp>` to enable module.
*
@ -24,7 +24,7 @@
namespace sta
{
/**
* @brief Implementation of SpiInterface using HAL.
* @brief Implementation of `SpiInterface` interface using HAL.
*/
class HalSpiInterface : public SpiInterface
{
@ -51,7 +51,7 @@ namespace sta
/**
* @brief Implementation of SpiDevice using HAL.
* @brief Implementation of `SpiDevice` interface using HAL.
*/
class HalSpiDevice : public SpiDevice
{

View File

@ -20,7 +20,7 @@
namespace sta
{
/**
* @brief Implementation of UART for HAL.
* @brief Implementation of `UART` interface using HAL.
*/
class HalUART : public UART
{

View File

@ -1,3 +1,6 @@
/**
* @brief Mutex interface definition.
*/
#ifndef STA_MUTEX_HPP
#define STA_MUTEX_HPP

View File

@ -1,3 +1,6 @@
/**
* @brief Signal interface definition.
*/
#ifndef STA_SIGNAL_HPP
#define STA_SIGNAL_HPP
@ -5,7 +8,7 @@
namespace sta
{
/**
* @brief Signal interface
* @brief Interface for signal objects.
*/
class Signal
{

View File

@ -1,3 +1,6 @@
/**
* @brief SPI interface definitions.
*/
#ifndef STA_SPI_DEVICE_HPP
#define STA_SPI_DEVICE_HPP

View File

@ -1,3 +1,6 @@
/**
* @brief SPI interface definitions.
*/
#ifndef STA_SPI_INTERFACE_HPP
#define STA_SPI_INTERFACE_HPP

View File

@ -1,3 +1,6 @@
/**
* @brief UART interface definition.
*/
#ifndef STA_UART_HPP
#define STA_UART_HPP