btstack_event: improve wording

This commit is contained in:
Matthias Ringwald 2022-05-05 11:42:06 +02:00
parent 5baa755bba
commit d25f7218e4
2 changed files with 5 additions and 5 deletions

View File

@ -21,7 +21,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed ### Changed
- A2DP: new a2dp.c contains shared code of Sink and Source roles - A2DP: new a2dp.c contains shared code of Sink and Source roles
- A2DP Sink: automatically configure stream endpoint for outgoing connections - A2DP Sink: automatically configure stream endpoint for outgoing connections
- SM: pairing events indicate if pairing will lead to LE Secure Connection - SM: pairing events indicate if LE Secure Connection will be used
## Release v1.5.2 ## Release v1.5.2

View File

@ -1562,7 +1562,7 @@ typedef uint8_t sm_key_t[16];
* @param handle * @param handle
* @param addr_type * @param addr_type
* @param address * @param address
* @param secure_connection - set to 1 if successful pairing leads to LE Secure Connection * @param secure_connection - set to 1 if LE Secure Connection pairing will be used
*/ */
#define SM_EVENT_JUST_WORKS_REQUEST 0xC8u #define SM_EVENT_JUST_WORKS_REQUEST 0xC8u
@ -1571,7 +1571,7 @@ typedef uint8_t sm_key_t[16];
* @param handle * @param handle
* @param addr_type * @param addr_type
* @param address * @param address
* @param secure_connection - set to 1 if successful pairing leads to LE Secure Connection * @param secure_connection - set to 1 if LE Secure Connection pairing will be used
* @param passkey * @param passkey
*/ */
#define SM_EVENT_PASSKEY_DISPLAY_NUMBER 0xC9u #define SM_EVENT_PASSKEY_DISPLAY_NUMBER 0xC9u
@ -1589,7 +1589,7 @@ typedef uint8_t sm_key_t[16];
* @param handle * @param handle
* @param addr_type * @param addr_type
* @param address * @param address
* @param secure_connection - set to 1 if successful pairing leads to LE Secure Connection * @param secure_connection - set to 1 if LE Secure Connection pairing will be used
*/ */
#define SM_EVENT_PASSKEY_INPUT_NUMBER 0xCBu #define SM_EVENT_PASSKEY_INPUT_NUMBER 0xCBu
@ -1598,7 +1598,7 @@ typedef uint8_t sm_key_t[16];
* @param handle * @param handle
* @param addr_type * @param addr_type
* @param address * @param address
* @param secure_connection - set to 1 if successful pairing leads to LE Secure Connection * @param secure_connection - set to 1 if LE Secure Connection pairing will be used
* @param passkey * @param passkey
*/ */
#define SM_EVENT_NUMERIC_COMPARISON_REQUEST 0xCCu #define SM_EVENT_NUMERIC_COMPARISON_REQUEST 0xCCu