From cf4f4776b1dd5863479977aba3af0d2f4a3c2198 Mon Sep 17 00:00:00 2001 From: Quentin F <109275084+qfisch@users.noreply.github.com> Date: Mon, 15 Sep 2025 11:53:06 +0200 Subject: [PATCH] Update 1.x_to2.x_migration_guide.md --- docs/1.x_to2.x_migration_guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.x_to2.x_migration_guide.md b/docs/1.x_to2.x_migration_guide.md index 0a587be63..825b417a4 100644 --- a/docs/1.x_to2.x_migration_guide.md +++ b/docs/1.x_to2.x_migration_guide.md @@ -55,7 +55,7 @@ The default address type is public `0`, whereas many devices use a random `1` ad If you experience this issue please create your address instances with the address type specified, i.e. `NimBLEAddress address("11:22:33:44:55:66", TYPE_HERE)` `NimBLEAddress::getNative` has been removed and replaced with `NimBLEAddress::getBase`. -This returns a pointer to `const ble_addr_t` instead of a pointer to the address value that `getNative` did. The value can be accessed through this struct via `ble_addr_t.value` and type is in `ble_addr_t.type`. +This returns a pointer to `const ble_addr_t` instead of a pointer to the address value that `getNative` did. The value can be accessed through this struct via `ble_addr_t.val` and type is in `ble_addr_t.type`.
## BLE UUID's