Skip to content

Commit

Permalink
Merge pull request #10 from IRNAS/release/v1.1.1
Browse files Browse the repository at this point in the history
Release v1.1.1
  • Loading branch information
TjazVracko committed Jun 20, 2023
2 parents 567e503 + 232d29c commit d164c30
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 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.1.1] - 2023-06-20

### Fixed

- `smtc_modem_hal_print_trace_array_*` functions incorrectly trimming immutable strings and causing a hard fault.

## [1.1.0] - 2023-06-19

## Changed
Expand Down Expand Up @@ -47,7 +53,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- stream
- tx_rx_continous

[Unreleased]: https://github.com/IRNAS/SWL2001-Zephyr/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/IRNAS/SWL2001-Zephyr/compare/v1.1.1...HEAD

[1.1.1]: https://github.com/IRNAS/SWL2001-Zephyr/compare/v1.1.0...v1.1.1

[1.1.0]: https://github.com/IRNAS/SWL2001-Zephyr/compare/v1.0.1...v1.1.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,15 +171,13 @@ void smtc_modem_hal_print_trace_wrn(const char *fmt, ...)
void smtc_modem_hal_print_trace_array_inf(char *msg, uint8_t *array, uint32_t len)
{
#ifdef CONFIG_LOG
prv_string_trim(msg);
LOG_HEXDUMP_INF(array, len, msg);
#endif /* CONFIG_LOG */
}

void smtc_modem_hal_print_trace_array_dbg(char *msg, uint8_t *array, uint32_t len)
{
#ifdef CONFIG_LOG
prv_string_trim(msg);
LOG_HEXDUMP_DBG(array, len, msg);
#endif /* CONFIG_LOG */
}

0 comments on commit d164c30

Please sign in to comment.