Skip to content

Commit b049df4

Browse files
author
Memfault Inc
committed
Memfault Firmware SDK 0.34.2 (Build 412)
1 parent ac6cb05 commit b049df4

File tree

5 files changed

+30
-5
lines changed

5 files changed

+30
-5
lines changed

.cyignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,4 @@ $(SEARCH_memfault-firmware-sdk)/components/include/memfault/http
2424
$(SEARCH_memfault-firmware-sdk)/components/include/memfault/metrics
2525
$(SEARCH_memfault-firmware-sdk)/components/include/memfault/panics
2626
$(SEARCH_memfault-firmware-sdk)/components/include/memfault/util
27-
$(SEARCH_memfault-firmware-sdk)/ports/include/memfault/ports/ble
28-
$(SEARCH_memfault-firmware-sdk)/ports/include/memfault/ports/stm32cube
27+
$(SEARCH_memfault-firmware-sdk)/ports/include/memfault

CHANGES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### Changes between Memfault SDK 0.34.2 and SDK 0.34.1 - Nov 8, 2022
2+
3+
#### :chart_with_upwards_trend: Improvements
4+
5+
- [ModusToolbox:tm: Software](https://www.infineon.com/cms/en/design-support/tools/sdk/modustoolbox-software/)
6+
- Updates SDK for compatibility with MTB 3.0
7+
18
### Changes between Memfault SDK 0.34.1 and SDK 0.34.0 - Nov 7, 2022
29

310
#### :chart_with_upwards_trend: Improvements

VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
BUILD ID: 390
2-
GIT COMMIT: d0c8fd2a6
1+
BUILD ID: 412
2+
GIT COMMIT: ba639658d

components/include/memfault/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ typedef struct {
1919
uint8_t patch;
2020
} sMfltSdkVersion;
2121

22-
#define MEMFAULT_SDK_VERSION { .major = 0, .minor = 34, .patch = 1 }
22+
#define MEMFAULT_SDK_VERSION { .major = 0, .minor = 34, .patch = 2 }
2323

2424
#ifdef __cplusplus
2525
}

ports/include/.mtbsearch.h

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//! @file
2+
//!
3+
//! Copyright (c) Memfault, Inc.
4+
//! See License.txt for details
5+
//!
6+
//! This file is required so that this path is still included when mtbsearch generates cyqbuild.mk
7+
//!
8+
//! For issues debugging the include path check the generate output in the build/ directory
9+
//! of a MTB application.
10+
//!
11+
//! Here's snippet for searching for memfault related include paths, run in the same directory as
12+
//! inclist.rsp: `cat inclist.rsp | tr " " "\n" | rg -e memfault-firmware-sdk`
13+
#ifdef __cplusplus
14+
extern "C" {
15+
#endif
16+
17+
#ifdef __cplusplus
18+
}
19+
#endif

0 commit comments

Comments
 (0)