diff options
author | Sven Gothel <[email protected]> | 2020-08-28 23:02:35 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2020-08-28 23:02:35 +0200 |
commit | b0d05fd7f825bb5d402af0da46d09c9f1aa9981e (patch) | |
tree | 476161fde4443c9f414f61bf0071d5c9f52742ee /api/direct_bt | |
parent | 4e0dcab5381289e165514310a05d6cd59c42586f (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.hpp | 4 | ||||
-rw-r--r-- | api/direct_bt/DBTManager.hpp | 7 | ||||
-rw-r--r-- | api/direct_bt/GATTHandler.hpp | 5 | ||||
-rw-r--r-- | api/direct_bt/HCIHandler.hpp | 5 |
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 { |