Skip to content

Commit 2fd85a6

Browse files
committed
Documentation
1 parent 60368e7 commit 2fd85a6

File tree

6 files changed

+14
-2
lines changed

6 files changed

+14
-2
lines changed

src/AudioTools/Communication/AdaptiveResamplingStream.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ namespace audio_tools {
1818
* The fill level is smoothed using a Kalman filter.
1919
*
2020
* @ingroup buffers
21+
* @ingroup communications
2122
* @author Phil Schatzmann
2223
*/
2324
class AdaptiveResamplingStream : public AudioStream {

src/AudioTools/Communication/AudioLoRa.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ struct AudioLoRaConfig : public AudioInfo {
4747
/**
4848
* @brief LoRa Audio Sending and Receiving
4949
* @author Phil Schatzmann
50+
* @ingroup communications
5051
* @copyright GPLv3
5152
*/
5253
class AudioLoRa : public AudioStream {

src/AudioTools/Communication/HLSStream.h

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@
1717

1818
namespace audio_tools_hls {
1919

20+
/**
21+
* @defgroup hls HLS
22+
* @ingroup communications
23+
* @brief HTTP Live Streaming (HLS)
24+
*/
25+
26+
2027
/**
2128
* @brief We feed the URLLoaderHLS with some url strings. The data of the
2229
* related segments are provided via the readBytes() method.
@@ -638,7 +645,8 @@ namespace audio_tools {
638645
* audio, you should buffer the content in a seaparate task.
639646
*
640647
* @author Phil Schatzmann
641-
* @ingroup http *@copyright GPLv3
648+
* @ingroup hls
649+
* @copyright GPLv3
642650
*/
643651

644652
template <typename URLStream>

src/AudioTools/Communication/HLSStreamESP32.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace audio_tools {
77

88
/// @brief HLS Stream implementation using URLStreamESP32 for ESP32-specific HTTP requests
9-
/// @ingroup http
9+
/// @ingroup hls
1010
using HLSStreamESP32 = HLSStreamT<URLStreamESP32>;
1111

1212
} // namespace audio_tools

src/AudioTools/Communication/ObjectStream.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ namespace audio_tools {
33
/**
44
* @brief A Arduino Stream which makes sure that we read back the same size
55
* as we wrote. It adds a size prefix to the data stream.
6+
* @ingroup communications
67
* @author Phil Schatzmann
78
*/
89
class ObjectStream : public BaseStream {

src/AudioTools/Communication/RedisBuffer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace audio_tools {
2424
* seconds.
2525
*
2626
* @tparam T Data type to buffer (e.g., uint8_t, int16_t)
27+
* @ingroup communications
2728
* @ingroup buffers
2829
*/
2930
template <typename T>

0 commit comments

Comments
 (0)