@@ -461,10 +461,10 @@ Bluetooth
461461 cleared on :c:func: `bt_enable `. Callbacks can now be registered before the initial
462462 call to :c:func: `bt_enable `, and should no longer be re-registered after a :c:func: `bt_disable `
463463 :c:func: `bt_enable ` cycle. (:github: `63693 `)
464- * The Bluetooth UUID has been modified to rodata in ``BT_UUID_DECLARE_16 ``, ``BT_UUID_DECLARE_32`
465- and ``BT_UUID_DECLARE_128 `` as the return value has been changed to `const `.
466- Any pointer to a UUID must be prefixed with `const `, otherwise there will be a compilation warning.
467- For example change ``struct bt_uuid *uuid = BT_UUID_DECLARE_16(xx) `` to
464+ * The Bluetooth UUID has been modified to rodata in ``BT_UUID_DECLARE_16 ``, ``BT_UUID_DECLARE_32 ``
465+ and ``BT_UUID_DECLARE_128 `` as the return value has been changed to `` const ` `.
466+ Any pointer to a UUID must be prefixed with `` const `` , otherwise there will be a compilation
467+ warning. For example change ``struct bt_uuid *uuid = BT_UUID_DECLARE_16(xx) `` to
468468 ``const struct bt_uuid *uuid = BT_UUID_DECLARE_16(xx) ``. (:github: `66136 `)
469469* The :c:func: `bt_l2cap_chan_send ` API no longer allocates buffers from the same pool as its `buf `
470470 parameter when segmenting SDUs into PDUs. In order to reproduce the previous behavior, the
@@ -518,7 +518,7 @@ Bluetooth Audio
518518 ``BT_AUDIO_CODEC_LC3_CHAN_COUNT `` is now ``BT_AUDIO_CODEC_CAP_TYPE_CHAN_COUNT ``,
519519 ``BT_AUDIO_CODEC_LC3_FREQ `` is now ``BT_AUDIO_CODEC_CAP_TYPE_FREQ ``, and
520520 ``BT_AUDIO_CODEC_CONFIG_LC3_FREQ `` is now ``BT_AUDIO_CODEC_CFG_FREQ ``, etc.
521- Similarly the `` enum``s have also been renamed.
521+ Similarly the enumerations have also been renamed.
522522 E.g. ``bt_audio_codec_config_freq `` is now ``bt_audio_codec_cfg_freq ``,
523523 ``bt_audio_codec_capability_type `` is now ``bt_audio_codec_cap_type ``,
524524 ``bt_audio_codec_config_type `` is now ``bt_audio_codec_cfg_type ``, etc. (:github: `67024 `)
@@ -672,7 +672,7 @@ Userspace
672672 * ``z_user_to_copy `` to :c:func: `k_usermode_to_copy `
673673 * ``z_user_string_copy `` to :c:func: `k_usermode_string_copy `
674674 * ``z_user_string_alloc_copy `` to :c:func: `k_usermode_string_alloc_copy `
675- * ``z_user_alloc_from_copy`` `` to :c:func: `k_usermode_alloc_from_copy `
675+ * ``z_user_alloc_from_copy `` to :c:func: `k_usermode_alloc_from_copy `
676676 * ``z_user_string_nlen `` to :c:func: `k_usermode_string_nlen `
677677 * ``z_dump_object_error `` to :c:func: `k_object_dump_error `
678678 * ``z_object_validate `` to :c:func: `k_object_validate `
0 commit comments