diff options
author | Sven Gothel <[email protected]> | 2023-10-27 08:34:28 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-10-27 08:34:28 +0200 |
commit | 9cfa085535f80f90514d407e28602783c60a6252 (patch) | |
tree | d1109db037f34b5ead1719a4efa3d6e7f1c5860e /examples | |
parent | ef4abe51be2a6a80be3ee1504c07ab2731f28ce5 (diff) |
examples/dbt_scanner10.cpp: Restore default cmd_uuid and cmd_rsp_uuid matching dbt_peripheral00
Diffstat (limited to 'examples')
-rw-r--r-- | examples/dbt_scanner10.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/dbt_scanner10.cpp b/examples/dbt_scanner10.cpp index ad91b1e7..15c4ddd0 100644 --- a/examples/dbt_scanner10.cpp +++ b/examples/dbt_scanner10.cpp @@ -134,8 +134,8 @@ static bool GATT_PING_ENABLED = false; static bool REMOVE_DEVICE = true; // Default from dbt_peripheral00.cpp or DBTPeripheral00.java -static std::unique_ptr<uuid_t> cmd_uuid = nullptr; // jau::uuid_t::create(std::string("d0ca6bf3-3d52-4760-98e5-fc5883e93712")); -static std::unique_ptr<uuid_t> cmd_rsp_uuid = nullptr; // jau::uuid_t::create(std::string("d0ca6bf3-3d53-4760-98e5-fc5883e93712")); +static std::unique_ptr<uuid_t> cmd_uuid = jau::uuid_t::create(std::string("d0ca6bf3-3d52-4760-98e5-fc5883e93712")); +static std::unique_ptr<uuid_t> cmd_rsp_uuid = jau::uuid_t::create(std::string("d0ca6bf3-3d53-4760-98e5-fc5883e93712")); static uint8_t cmd_arg = 0x44; static bool SHOW_UPDATE_EVENTS = false; |