Skip to content

Commit 087af4d

Browse files
author
Memfault Inc
committed
Memfault Firmware SDK 1.21.1 (Build 12975)
1 parent d455688 commit 087af4d

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [1.21.1] - 2025-03-07
10+
11+
### 🐛 Fixed
12+
13+
- General:
14+
15+
- Disable `MEMFAULT_LOG_TIMESTAMPS_ENABLE` by default. The new timestamped log
16+
feature was enabled by default in the previous release, but only logs
17+
embedded in coredumps are fully supported. Logs captured with
18+
`memfault_log_trigger_collection()` do not yet support timestamps, so the
19+
feature should not be used in production until that support is added.
20+
921
## [1.21.0] - 2025-03-06
1022

1123
### 📈 Added

VERSION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
BUILD ID: 12963
2-
GIT COMMIT: 3dabeb442c
3-
VERSION: 1.21.0
1+
BUILD ID: 12975
2+
GIT COMMIT: b107685f75
3+
VERSION: 1.21.1

components/include/memfault/default_config.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,10 @@ extern "C" {
166166
#endif
167167

168168
//! Enable log line timestamps, when memfault_platform_time_get_current() is
169-
//! available.
169+
//! available. Currently timestamps are only decoded from logs embedded in
170+
//! coredumps.
170171
#ifndef MEMFAULT_LOG_TIMESTAMPS_ENABLE
171-
#define MEMFAULT_LOG_TIMESTAMPS_ENABLE 1
172+
#define MEMFAULT_LOG_TIMESTAMPS_ENABLE 0
172173
#endif
173174

174175
//! Controls whether or not multiple events will be batched into a single

components/include/memfault/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ typedef struct {
2020
} sMfltSdkVersion;
2121

2222
#define MEMFAULT_SDK_VERSION \
23-
{ .major = 1, .minor = 21, .patch = 0 }
24-
#define MEMFAULT_SDK_VERSION_STR "1.21.0"
23+
{ .major = 1, .minor = 21, .patch = 1 }
24+
#define MEMFAULT_SDK_VERSION_STR "1.21.1"
2525

2626
#ifdef __cplusplus
2727
}

0 commit comments

Comments
 (0)