Skip to content

Commit

Permalink
Merge pull request #25 from IRNAS/release/v1.3.1
Browse files Browse the repository at this point in the history
Release v1.3.1
  • Loading branch information
TjazVracko authored Jan 30, 2023
2 parents 5d9be18 + 0c4ea1e commit f036d9f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)

## [Unreleased]

## [1.3.1] - 2023-01-30

### Changed

- Increase internall buffer in USS.

## [1.3.0] - 2023-01-27

### Added
Expand Down Expand Up @@ -50,7 +56,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Basic sample.
- Callbacks sample.

[Unreleased]: https://github.com/IRNAS/irnas-usersettings-lib/compare/v1.3.0...HEAD
[Unreleased]: https://github.com/IRNAS/irnas-usersettings-lib/compare/v1.3.1...HEAD

[1.3.1]: https://github.com/IRNAS/irnas-usersettings-lib/compare/v1.3.0...v1.3.1

[1.3.0]: https://github.com/IRNAS/irnas-usersettings-lib/compare/v1.2.0...v1.3.0

Expand Down
6 changes: 3 additions & 3 deletions library/bt_service/bt_uss.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ static int prv_send_notification(uint8_t *data, size_t len);
static struct bt_conn *prv_bt_conn;

/* Response buffer and binary protocol executor */
static uint8_t resp_buffer[50];
static struct usp_executor prv_usp_binary_executor =
USP_BINARY_EXECUTOR_DECLARE(resp_buffer, sizeof(resp_buffer), prv_send_notification);
static uint8_t prv_resp_buffer[512];
static struct usp_executor prv_usp_binary_executor = USP_BINARY_EXECUTOR_DECLARE(
prv_resp_buffer, sizeof(prv_resp_buffer), prv_send_notification);

/**
* @brief Data written into the characteristic by the client is received in this callback
Expand Down

0 comments on commit f036d9f

Please sign in to comment.