File tree Expand file tree Collapse file tree 3 files changed +4
-18
lines changed
Expand file tree Collapse file tree 3 files changed +4
-18
lines changed Original file line number Diff line number Diff line change @@ -123,15 +123,6 @@ Bluetooth HCI
123123* The deprecated ``ipm `` value was removed from ``bt-hci-bus `` devicetree property.
124124 ``ipc `` should be used instead.
125125
126- Bluetooth Host
127- ==============
128-
129- * :kconfig:option: `CONFIG_BT_FIXED_PASSKEY ` has been deprecated. Instead, the application can
130- provide passkeys for pairing using the :c:member: `bt_conn_auth_cb.app_passkey ` callback, which is
131- available when :kconfig:option: `CONFIG_BT_APP_PASSKEY ` is enabled. The application can return the
132- passkey for pairing, or :c:macro: `BT_PASSKEY_RAND ` for the Host to generate a random passkey
133- instead.
134-
135126Ethernet
136127========
137128
Original file line number Diff line number Diff line change @@ -2380,8 +2380,8 @@ int bt_le_oob_get_sc_data(struct bt_conn *conn,
23802380 const struct bt_le_oob_sc_data * * oobd_remote );
23812381
23822382/**
2383- * DEPRECATED - use @ref BT_PASSKEY_RAND instead. Special passkey value that can be used to disable
2384- * a previously set fixed passkey.
2383+ * Special passkey value that can be used to disable a previously
2384+ * set fixed passkey.
23852385 */
23862386#define BT_PASSKEY_INVALID 0xffffffff
23872387
@@ -2393,15 +2393,12 @@ int bt_le_oob_get_sc_data(struct bt_conn *conn,
23932393 * Sets a fixed passkey to be used for pairing. If set, the
23942394 * pairing_confirm() callback will be called for all incoming pairings.
23952395 *
2396- * @deprecated Use @ref BT_PASSKEY_RAND and the app_passkey callback from @ref bt_conn_auth_cb
2397- * instead.
2398- *
23992396 * @param passkey A valid passkey (0 - 999999) or BT_PASSKEY_INVALID
24002397 * to disable a previously set fixed passkey.
24012398 *
24022399 * @return 0 on success or a negative error code on failure.
24032400 */
2404- __deprecated int bt_passkey_set (unsigned int passkey );
2401+ int bt_passkey_set (unsigned int passkey );
24052402
24062403/** Info Structure for OOB pairing */
24072404struct bt_conn_oob_info {
Original file line number Diff line number Diff line change @@ -701,10 +701,8 @@ config BT_SMP_USB_HCI_CTLR_WORKAROUND
701701 if the keys are distributed over an encrypted link.
702702
703703config BT_FIXED_PASSKEY
704- bool "Use a fixed passkey for pairing [DEPRECATED]"
705- select DEPRECATED
704+ bool "Use a fixed passkey for pairing"
706705 help
707- This option is deprecated, use BT_APP_PASSKEY instead.
708706 With this option enabled, the application will be able to call the
709707 bt_passkey_set() API to set a fixed passkey. If set, the
710708 pairing_confirm() callback will be called for all incoming pairings.
You can’t perform that action at this time.
0 commit comments