aboutsummaryrefslogtreecommitdiffstats
path: root/api/direct_bt
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2020-08-28 23:02:35 +0200
committerSven Gothel <[email protected]>2020-08-28 23:02:35 +0200
commitb0d05fd7f825bb5d402af0da46d09c9f1aa9981e (patch)
tree476161fde4443c9f414f61bf0071d5c9f52742ee /api/direct_bt
parent4e0dcab5381289e165514310a05d6cd59c42586f (diff)
DBTEnv/direct_bt.debug: Aligning DBTManager alias to 'mgmt': 'direct_bt.debug.manager.event' -> 'direct_bt.debug.mgmt.event'
Diffstat (limited to 'api/direct_bt')
-rw-r--r--api/direct_bt/DBTEnv.hpp4
-rw-r--r--api/direct_bt/DBTManager.hpp7
-rw-r--r--api/direct_bt/GATTHandler.hpp5
-rw-r--r--api/direct_bt/HCIHandler.hpp5
4 files changed, 6 insertions, 15 deletions
diff --git a/api/direct_bt/DBTEnv.hpp b/api/direct_bt/DBTEnv.hpp
index c2542169..f2fe52e0 100644
--- a/api/direct_bt/DBTEnv.hpp
+++ b/api/direct_bt/DBTEnv.hpp
@@ -141,11 +141,11 @@ namespace direct_bt {
* Example 1
* <pre>
* Input Environment:
- * "direct_bt.debug" := "hci.event,manager.event=true,gatt.data=false"
+ * "direct_bt.debug" := "hci.event,mgmt.event=true,gatt.data=false"
*
* Result Environment:
* "direct_bt.debug.hci.event" := "true"
- * "direct_bt.debug.manager.event" := "true"
+ * "direct_bt.debug.mgmt.event" := "true"
* "direct_bt.debug.gatt.data" := "false"
* "direct_bt.debug" := "true" (will be overwritten)
* </pre>
diff --git a/api/direct_bt/DBTManager.hpp b/api/direct_bt/DBTManager.hpp
index d2a3af3b..d7a7267b 100644
--- a/api/direct_bt/DBTManager.hpp
+++ b/api/direct_bt/DBTManager.hpp
@@ -95,7 +95,7 @@ namespace direct_bt {
/**
* Debug all Mgmt event communication
* <p>
- * Environment variable is 'direct_bt.debug.manager.event'.
+ * Environment variable is 'direct_bt.debug.mgmt.event'.
* </p>
*/
const bool DEBUG_EVENT;
@@ -127,10 +127,7 @@ namespace direct_bt {
* Implementation utilizes a lock free ringbuffer receiving data within its separate thread.
* </p>
* <p>
- * Controlling Environment variables:
- * <pre>
- * - 'direct_bt.debug.manager.event': Debug messages about events, see debug_event
- * </pre>
+ * Controlling Environment variables, see {@link MgmtEnv}.
* </p>
*/
class DBTManager : public JavaUplink {
diff --git a/api/direct_bt/GATTHandler.hpp b/api/direct_bt/GATTHandler.hpp
index baa1f545..170819a9 100644
--- a/api/direct_bt/GATTHandler.hpp
+++ b/api/direct_bt/GATTHandler.hpp
@@ -141,10 +141,7 @@ namespace direct_bt {
* Implementation utilizes a lock free ringbuffer receiving data within its separate thread.
* </p>
* <p>
- * Controlling Environment variables:
- * <pre>
- * - 'direct_bt.debug.gatt.data': Debug messages about detailed GATT data, see debug_data
- * </pre>
+ * Controlling Environment variables, see {@link GATTEnv}.
* </p>
*/
class GATTHandler {
diff --git a/api/direct_bt/HCIHandler.hpp b/api/direct_bt/HCIHandler.hpp
index 5aee317c..bbf91647 100644
--- a/api/direct_bt/HCIHandler.hpp
+++ b/api/direct_bt/HCIHandler.hpp
@@ -176,10 +176,7 @@ namespace direct_bt {
* Implementation utilizes a lock free ringbuffer receiving data within its separate thread.
* </p>
* <p>
- * Controlling Environment variables:
- * <pre>
- * - 'direct_bt.debug.hci.event': Debug messages about events, see debug_event
- * </pre>
+ * Controlling Environment variables, see {@link HCIEnv}.
* </p>
*/
class HCIHandler {