Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion nimble/host/include/host/ble_gatt.h
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,12 @@ struct ble_hs_cfg;
/*** @client. */
/** Represents a GATT error. */
struct ble_gatt_error {
/** The GATT status code indicating the type of error. */
/**
* The NimBLE host status code indicating the type of error.
*
* Values follow the NimBLE host return-code convention; see:
* https://mynewt.apache.org/latest/network/ble_hs/ble_hs_return_codes.html
*/
uint16_t status;

/** The attribute handle associated with the error. */
Expand Down
Loading