Skip to content

Commit

Permalink
Memfault Firmware SDK 1.21.1 (Build 12975)
Browse files Browse the repository at this point in the history
  • Loading branch information
Memfault Inc committed Mar 7, 2025
1 parent d455688 commit 087af4d
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.21.1] - 2025-03-07

### 🐛 Fixed

- General:

- Disable `MEMFAULT_LOG_TIMESTAMPS_ENABLE` by default. The new timestamped log
feature was enabled by default in the previous release, but only logs
embedded in coredumps are fully supported. Logs captured with
`memfault_log_trigger_collection()` do not yet support timestamps, so the
feature should not be used in production until that support is added.

## [1.21.0] - 2025-03-06

### 📈 Added
Expand Down
6 changes: 3 additions & 3 deletions VERSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
BUILD ID: 12963
GIT COMMIT: 3dabeb442c
VERSION: 1.21.0
BUILD ID: 12975
GIT COMMIT: b107685f75
VERSION: 1.21.1
5 changes: 3 additions & 2 deletions components/include/memfault/default_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,10 @@ extern "C" {
#endif

//! Enable log line timestamps, when memfault_platform_time_get_current() is
//! available.
//! available. Currently timestamps are only decoded from logs embedded in
//! coredumps.
#ifndef MEMFAULT_LOG_TIMESTAMPS_ENABLE
#define MEMFAULT_LOG_TIMESTAMPS_ENABLE 1
#define MEMFAULT_LOG_TIMESTAMPS_ENABLE 0
#endif

//! Controls whether or not multiple events will be batched into a single
Expand Down
4 changes: 2 additions & 2 deletions components/include/memfault/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ typedef struct {
} sMfltSdkVersion;

#define MEMFAULT_SDK_VERSION \
{ .major = 1, .minor = 21, .patch = 0 }
#define MEMFAULT_SDK_VERSION_STR "1.21.0"
{ .major = 1, .minor = 21, .patch = 1 }
#define MEMFAULT_SDK_VERSION_STR "1.21.1"

#ifdef __cplusplus
}
Expand Down

0 comments on commit 087af4d

Please sign in to comment.