From 5e359cef9b99c32da0c490881c31a208b5c841f3 Mon Sep 17 00:00:00 2001 From: pschatzmann Date: Mon, 14 Oct 2024 00:35:15 +0200 Subject: [PATCH] doxygen --- docs/html/_bluetooth_a2_d_p_source_8h_source.html | 2 +- docs/html/class_bluetooth_a2_d_p_source.html | 2 +- src/BluetoothA2DPSource.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/html/_bluetooth_a2_d_p_source_8h_source.html b/docs/html/_bluetooth_a2_d_p_source_8h_source.html index 51f8b42..d67b984 100644 --- a/docs/html/_bluetooth_a2_d_p_source_8h_source.html +++ b/docs/html/_bluetooth_a2_d_p_source_8h_source.html @@ -341,7 +341,7 @@
virtual void start_raw(music_data_cb_t callback=NULL)
Starts w/o indicating the name. Connections will be managed via set_ssid_callback()
Definition: BluetoothA2DPSource.h:146
virtual void bt_av_hdl_avrc_ct_evt(uint16_t event, void *p_param)
avrc CT event handler
Definition: BluetoothA2DPSource.cpp:947
virtual void start_raw(const char *name, music_data_cb_t callback=NULL)
starts the bluetooth source
Definition: BluetoothA2DPSource.cpp:164
-
virtual bool is_discovery_active()
Provides the current discovery state.
Definition: BluetoothA2DPSource.h:194
+
virtual bool is_discovery_active()
Provides the current discovery state: returns true when the discovery is in progress.
Definition: BluetoothA2DPSource.h:194
Sound data as byte stream. We support TwoChannelSoundData (uint16_t + uint16_t) and OneChannelSoundDa...
Definition: SoundData.h:71
Internal message to be sent for BluetoothA2DPSink and BluetoothA2DPSource.
Definition: BluetoothA2DPCommon.h:107
diff --git a/docs/html/class_bluetooth_a2_d_p_source.html b/docs/html/class_bluetooth_a2_d_p_source.html index 18f00ec..bbbf182 100644 --- a/docs/html/class_bluetooth_a2_d_p_source.html +++ b/docs/html/class_bluetooth_a2_d_p_source.html @@ -158,7 +158,7 @@   virtual bool is_discovery_active () - Provides the current discovery state.
+ Provides the current discovery state: returns true when the discovery is in progress.
  void log_free_heap () diff --git a/src/BluetoothA2DPSource.h b/src/BluetoothA2DPSource.h index 9e24a09..f740044 100644 --- a/src/BluetoothA2DPSource.h +++ b/src/BluetoothA2DPSource.h @@ -190,7 +190,7 @@ class BluetoothA2DPSource : public BluetoothA2DPCommon { discovery_mode_callback = callback; } - /// Provides the current discovery state + /// Provides the current discovery state: returns true when the discovery is in progress virtual bool is_discovery_active() { return discovery_active; }