File tree Expand file tree Collapse file tree 4 files changed +43
-4
lines changed
components/include/memfault Expand file tree Collapse file tree 4 files changed +43
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1- BUILD ID: 490129
2- GIT COMMIT: d8f64c57b
1+ BUILD ID: 490385
2+ GIT COMMIT: aeb8e3734
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments