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,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
{