Skip to content

Commit 7eafab4

Browse files
author
Memfault Inc
committed
Memfault Firmware SDK 0.32.1 (Build 490385)
1 parent 806df3e commit 7eafab4

File tree

4 files changed

+43
-4
lines changed

4 files changed

+43
-4
lines changed

CHANGES.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
### Changes between Memfault SDK 0.32.0 and SDK 0.31.5 - Aug 7, 2022
1+
### Changes between Memfault SDK 0.32.1 and SDK 0.32.0 - Aug 8, 2022
2+
3+
#### :house: Internal
4+
5+
- Added default config header for PSoC 6 port
6+
[ports/cypress/psoc6/psoc6_default_config.h](ports/cypress/psoc6/psoc6_default_config.h)
7+
so user doesn't have to create it
8+
9+
### Changes between Memfault SDK 0.32.0 and SDK 0.31.5 - Aug 8, 2022
210

311
#### :chart_with_upwards_trend: Improvements
412

VERSION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
BUILD ID: 490129
2-
GIT COMMIT: d8f64c57b
1+
BUILD ID: 490385
2+
GIT COMMIT: aeb8e3734

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 = 32, .patch = 0 }
22+
#define MEMFAULT_SDK_VERSION { .major = 0, .minor = 32, .patch = 1 }
2323

2424
#ifdef __cplusplus
2525
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
#pragma once
2+
3+
//! @file
4+
//!
5+
//! Copyright (c) Memfault, Inc.
6+
//! See License.txt for details
7+
//!
8+
//! Defines configuration specific to PSOC6 Port
9+
//!
10+
//! These options can be changed from the DEFINES section in a MTB Makefile, i.e
11+
//! DEFINES+=MEMFAULT_PORT_MEMORY_TRACKING_ENABLED=0 or overriden with a custom
12+
//! "memfault_platform_config.h"
13+
14+
#ifdef __cplusplus
15+
extern "C" {
16+
#endif
17+
18+
//! Enable collection of metrics around heap utilization using heartbeat metrics
19+
20+
#ifndef MEMFAULT_PORT_MEMORY_TRACKING_ENABLED
21+
#define MEMFAULT_PORT_MEMORY_TRACKING_ENABLED 1
22+
#endif
23+
24+
//! Enables collection of statistics around Wi-Fi using heartbeat metrics
25+
#ifndef MEMFAULT_PORT_WIFI_TRACKING_ENABLED
26+
#define MEMFAULT_PORT_WIFI_TRACKING_ENABLED 1
27+
#endif
28+
29+
#ifdef __cplusplus
30+
}
31+
#endif

0 commit comments

Comments
 (0)