Releases: memfault/memfault-firmware-sdk
1.21.1
🐛 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.
- Disable
1.21.0
📈 Added
-
General:
- Logs captured by Memfault now include a timestamp by default, when the
platform implementsmemfault_platform_time_get_current()
. This feature can
be disabled by setting#define MEMFAULT_LOG_TIMESTAMPS_ENABLE 0
in
memfault_platform_config.h
.
- Logs captured by Memfault now include a timestamp by default, when the
-
ESP-IDF:
-
Add new built-in Wi-Fi metrics:
wifi_primary_channel
- the primary channel ID of the associated Wi-Fi
access pointwifi_auth_mode
- the authentication mode of the associated Wi-Fi access
point, for exampleWPA2_PSK
wifi_standard_version
- the Wi-Fi version of the associated Wi-Fi access
point, for example802.11n
These metrics are enabled by default and can be disabled (along with other
built-in Wi-Fi metrics) with the Kconfig option
CONFIG_MEMFAULT_ESP_WIFI_METRICS
-
🛠️ Changed
-
ESP-IDF:
-
Support cases where the
IDF_VER
build variable is set to
"HEAD-HASH-NOTFOUND"
(i.e. using an ESP-IDF SDK that is not a git repo),
when setting the built-in metricMemfaultSdkMetric_os_version
. In this
case, the value is taken from theESP_IDF_VERSION_x
macros, which are less
precise. -
Use more specific Memfault reset reason codes for these watchdog reset
types, previously all categorized asHardwareWatchdog
ESP_RST_INT_WDT
->SoftwareWatchdog
ESP_RST_TASK_WDT
->TaskWatchdog
ESP_RST_WDT
(RTC watchdog, the real hardware watchdog), stays as
HardwareWatchdog
-
🐛 Fixed
-
ESP-IDF:
- Correctly set the Memfault Firmware SDK version inside the
espressif component
version of the SDK. Prior to this fix, the SDK version reports as
"MemfaultSdkMetric_sdk_version": "0.0.0"
. No change to the SDK, only a
tooling/release change.
- Correctly set the Memfault Firmware SDK version inside the
1.20.0
📈 Added
-
General:
-
Make
memfault_reboot_reason_get()
and
memfault_platform_metrics_timer_boot()
weakly defined in the
platform templates to make removing them optional when
first integrating -
Added a configuration option,
MEMFAULT_CRC16_BUILTIN
, that permits
disabling the built-in crc16
implementation. The user should provide a compatible implementation of
memfault_crc16_compute()
. For example, if the Zephyr CRC library is used,
a compatible implementation would be:#include <zephyr/sys/crc.h> uint16_t memfault_crc16_compute(uint16_t crc_initial_value, const void *data, size_t data_len_bytes) { return crc16_itu_t(crc_initial_value, data, data_len_bytes); }
A Zephyr Kconfig setting,
CONFIG_MEMFAULT_CRC16_BUILTIN
, is also provided
to control this option.Thanks to @JordanYates for submitting this
feature request in
#84 ! -
Added an example
daily_heartbeat
session to the
FreeRTOS QEMU example, which demonstrates
how to send a daily heartbeat session to Memfault. Daily Heartbeats are a
special category of Session Metrics, and can be used to track device
properties over a longer interval than heartbeat metrics. -
Added an optional field to the built-in
FreeRTOS task stack usage metrics,
.get_task_handle
, which allows the user to provide a custom function to
get the task handle for a given thread name, instead of using the thread
name to identify the thread. This is useful in systems where there are
threads with ambiguous names. The
ESP32 example app is
updated to use this feature for ESP-IDF <5.3, where on dual-core SOCs, the
per-core idle threads are both namedIDLE
.
-
-
nRF Connect SDK:
-
Added a new Kconfig symbol
CONFIG_MEMFAULT_FOTA_HTTP_FRAG_SIZE
to enable
controlling the HTTP fragment size when using NCS >=2.9.9. Previously,
CONFIG_DOWNLOAD_CLIENT_HTTP_FRAG_SIZE_1024=y
was required, but this option
was deprecated in NCS 2.9.9. -
Add built-in support for the
thermal_cpu_c
(CPU temperature) metric for
nRF5x chips (nRF52 and nRF54 app core supported). Use the Kconfig setting
MEMFAULT_METRICS_CPU_TEMP
to disable the metric.
-
-
Zephyr
- Add a new Kconfig setting,
CONFIG_MEMFAULT_HTTP_CLIENT_TIMEOUT_MS
, which
controls the timeout for the Memfault HTTP client, used both for chunk
upload and OTA operations. The default timeout is 5 seconds. Connections
with poor latency may require a longer timeout to avoid premature
disconnection. Thanks to @chirambaht for
submitting this in
#86!
- Add a new Kconfig setting,
🐛 Fixed
-
ESP-IDF:
- Use the configuration
MEMFAULT_LOG_MAX_LINE_SAVE_LEN
to set the max length
of a log line whenCONFIG_MEMFAULT_LOG_USE_VPRINTF_HOOK=y
, which is the
default setting in ESP-IDF. Previously, the log line was arbitrarily
truncated in the Memfault vprintf hook before being saved to the Memfault
log buffer.
- Use the configuration
-
General:
- Remove the
MEMFAULT_PACKED
attribute for theeMemfaultRebootReason
declaration; this compiler extension is not supported on IAR EWARM's
compiler. Change the assembly shim to properly zero-extend the enum constant
to avoid ABI issues when invoking the C fault handling code.
- Remove the
🛠️ Changed
-
General:
-
Remove an extra underscore in the folder name when using the
eclipse_patch.py
utility with a port name that
is one folder deep (e.g.freertos
) -
Rename the
memfault_crc16_ccitt_compute()
function to
memfault_crc16_compute()
. The CRC-16 algorithm used is canonically named
CRC-16/XMODEM
, notCRC-16/CCITT
(akaCRC-16/KERMIT
). The file
implementing that function is left asmemfault_crc16_ccitt.c
for backwards
compatibility. Thanks to @JordanYates for
reporting this issue in
#83!
-
-
Zephyr:
-
Add a missing Kconfig dependency to
MEMFAULT_METRICS_THREADS
,
INIT_STACKS
. Also add missing dependencies to the Kconfig option
MEMFAULT_METRICS_DEFAULT_SET_ENABLE
:INIT_STACKS
THREAD_RUNTIME_STATS
THREAD_STACK_INFO
Thanks to @JordanYates for reporting this
problem in
#86 ! -
Update the
memfault_zephyr_port_post_data()/memfault_zephyr_port_post_data_return_size()
functions to only open the TLS socket if there is data ready to send, which
is otherwise wasteful, as the socket will be closed without sending any
Memfault data. -
Add an explicit module name,
memfault-firmware-sdk
, to the module
manifest. This avoids issues when the SDK is registered in a Zephyr manifest
under a directory name other thanmemfault-firmware-sdk
. Thanks to
@JordanYates for reporting this issue in
#81! -
Exclude unused stack space when capturing thread stacks, via the
thread.stack_info.delta
property. This reduces the amount of coredump
storage used to capture thread stacks, especially when
CONFIG_STACK_POINTER_RANDOM
orCONFIG_THREAD_LOCAL_STORAGE
is enabled.
Thanks to @JordanYates for reporting this
issue in #81!
-
-
nRF Connect SDK:
-
Remove use of child and parent image functionality in the nRF9160 sample
app, and replace with sysbuild support. Child image support was deprecated
in NCS 2.7.0 in favor of sysbuild. -
Use the downloader library instead of the download client library when using
NCS >= 2.9.9. The download_client was recently deprecated in favor of the
downloader. Download client support is now inmemfault_fota_legacy.c
.
-
1.19.0
📈 Added
-
General:
-
Add an option to set the
Self Test component output
log level,MEMFAULT_SELF_TEST_OUTPUT_LOG
, to control the verbosity of the
Self Test output. Set it by selecting the Memfault Log macro to use, for
example#define MEMFAULT_SELF_TEST_OUTPUT_LOG MEMFAULT_LOG_DEBUG
. The
default level is the same as before,MEMFAULT_LOG_INFO
. -
Add an
implementation ofmemfault_reboot_reason_get()
for the STM32U5xx series of MCUs, using theRCC-CSR
register to determine
the reset reason. Add the file to your project to make use of it! -
Add an
implementation for flash-backed coredump storage
for the STM32U5xx series of MCUs, using the internal flash memory to store
coredumps. Add the file to your project to make use of it! -
Enable the MPU (Memory Protection Unit) in the
FreeRTOS QEMU example, to demonstrate Memfault's
MPU region analysis feature.
This feature is enabled in a Memfault project by setting
#define MEMFAULT_COLLECT_MPU_STATE 1
inmemfault_platform_config.h
. The
MPU registers are captured as part of a coredump, and Memfault will analyze
the configuration and include the result in the Trace viewer. -
Add a new reboot reason code,
kMfltRebootReason_TaskWatchdog
, for marking
crashes due to a Task Watchdog. Memfault has a
built-in Task Watchdog system,
and
Zephyr
and
ESP-IDF
both implement Task Watchdog systems.
-
-
FreeRTOS:
-
Add support for tracking per-thread stack usage in the
Memfault FreeRTOS port.
This feature is enabled by default and can be disabled by setting
#define MEMFAULT_FREERTOS_COLLECT_THREAD_METRICS 0
in
memfault_platform_config.h
. The default threads monitored areIDLE
and
Tmr Svc
.Threads are registered for tracking by defining
MEMFAULT_METRICS_DEFINE_THREAD_METRICS()
in the application. For example://! Set the list of threads to monitor for stack usage. The metric keys must //! be defined in memfault_metrics_heartbeat_config.def, ex: //! //! MEMFAULT_METRICS_KEY_DEFINE_WITH_SCALE_VALUE( //! memory_main_pct_max, kMemfaultMetricType_Unsigned, //! CONFIG_MEMFAULT_METRICS_THREADS_MEMORY_SCALE_FACTOR //! ) #include "memfault/ports/zephyr/thread_metrics.h" MEMFAULT_METRICS_DEFINE_THREAD_METRICS ( // monitor the main thread stack usage { .thread_name = "main", .stack_usage_metric_key = MEMFAULT_METRICS_KEY(memory_main_pct_max), }, // monitor the shell_uart thread stack usage { .thread_name = "shell_uart", .stack_usage_metric_key = MEMFAULT_METRICS_KEY(memory_shell_uart_pct_max), });
-
Add example usage of per-thread stack usage support to the
FreeRTOS QEMU example for the idle, timer service,
console input, metrics, and heap tasks. -
Add tracking of libc heap usage via the
memory_pct_max
metric to the
FreeRTOS QEMU example
-
-
Zephyr:
-
Add support for tracking per-thread stack usage in the
Memfault Zephyr port.
This feature is enabled by default and can be disabled by setting
CONFIG_MEMFAULT_METRICS_THREADS=n
. The default threads monitored are
main
andsysworkq
.Threads are registered for tracking by defining
MEMFAULT_METRICS_DEFINE_THREAD_METRICS()
in the application. For example://! Set the list of threads to monitor for stack usage. The metric keys must //! be defined in memfault_metrics_heartbeat_config.def, ex: //! //! MEMFAULT_METRICS_KEY_DEFINE_WITH_SCALE_VALUE( //! memory_main_pct_max, kMemfaultMetricType_Unsigned, //! CONFIG_MEMFAULT_METRICS_THREADS_MEMORY_SCALE_FACTOR //! ) #include "memfault/ports/zephyr/thread_metrics.h" MEMFAULT_METRICS_DEFINE_THREAD_METRICS ( { .thread_name = "main", .stack_usage_metric_key = MEMFAULT_METRICS_KEY(memory_main_pct_max), }, { .thread_name = "shell_uart", .stack_usage_metric_key = MEMFAULT_METRICS_KEY(memory_shell_uart_pct_max), });
-
Update to support removal of the global
CSTD
compiler property (deprecated
in Zephyr v3.7.0, and just removed in Zephyrmain
), when
CONFIG_MEMFAULT_COMPACT_LOG
is enabled. Thanks to
@fouge for providing this fix in
#78 ! -
Add a new built-in metric,
cpu_usage_pct
, which reports the percentage of
the CPU used. This metric is enabled by default as part of the default set
of metrics, controlled withCONFIG_MEMFAULT_METRICS_DEFAULT_SET_ENABLE
. -
For ARM targets implementing and enabling the MPU, automatically capture the
and
analyze the MPU configuration
as part of a coredump. This can be controlled with the
CONFIG_MEMFAULT_COREDUMP_COLLECT_MPU_STATE
Kconfig option. -
Add a new Kconfig option,
CONFIG_MEMFAULT_METRICS_HEARTBEAT_INTERVAL_SECS
,
which should be used instead of
#define MEMFAULT_METRICS_HEARTBEAT_INTERVAL_SECS xxx
in
memfault_platform_config.h
. A build error will occur if the value is set
inmemfault_platform_config.h
to enforce migrating the setting. Thanks to
@JordanYates for reporting this feature
request in
#80
-
-
ESP-IDF:
-
Add support for correctly marking crashes triggered due to a Task Watchdog.
A test command,esp_task_watchdog <cpuid>
, has been added to the
esp32 sample app to trigger a Task Watchdog fault on the
specified core. Be sure to enable the Kconfig option
CONFIG_ESP_TASK_WDT_PANIC=y
to have the system panic when a Task Watchdog
fault occurs. Memfault will capture and tag the fault appropriately, as for
other fault types. -
Add a new Kconfig option,
CONFIG_MEMFAULT_METRICS_HEARTBEAT_INTERVAL_SECS
,
which should be used instead of
#define MEMFAULT_METRICS_HEARTBEAT_INTERVAL_SECS xxx
in
memfault_platform_config.h
. A build error will occur if the value is set
inmemfault_platform_config.h
to enforce migrating the setting.
-
-
nRF-Connect SDK:
-
Add an implementation for reboot reason tracking on the nRF54Lx series of
MCUs, using theRESETREAS
register to determine the reset reason. This
will be automatically enabled when building for an nRF54Lx series device
(CONFIG_SOC_SERIES_NRF54LX=y
). -
Add example usage of per-thread stack usage support to the
nRF9160 example for the idle, sysworkq,
mflt http, WDT, and shell uart tasks.
-
🐛 Fixed
-
Zephyr:
- Fix the
MEMFAULT_METRICS_CPU_TEMP
Kconfig dependencies, to correctly check
for presence of the DTdie-temp0
alias, and remove the dependency on
ADC
, which doesn't apply to all boards implementing a temp sensor. Thanks
to @JordanYates for reporting this issue
in #79 !
- Fix the
🛠️ Changed
-
General:
- The
eclipse_patch.py
utility
--memfault-sdk-dir
argument is now optional, and defaults to the parent
directory of the script folder.
- The
-
FreeRTOS:
- Renamed the FreeRTOS QEMU sample app heap metrics from
Example_HeapFreeBytes
andExample_HeapMinFreeBytes
to
FreeRTOS_HeapFreeBytes
andFreeRTOS_HeapMinFreeBytes
.
- Renamed the FreeRTOS QEMU sample app heap metrics from
-
nRF-Connect SDK:
-
Update the nRF91 sample app to only enable
the UART log backend. Previously both the SHELL and UART log backends were
enabled, resulting in duplicate log lines emitted to the console. -
Update the nRF91 sample app and the
nRF5x sample app to use the latest version
of the nRF-Connect SDK, v2.9.0.
-
-
Zephyr:
- Renamed the QEMU sample app metric
main_thread_cpu_time_permille
->cpu_usage_main_pct
.
- Renamed the QEMU sample app metric
1.18.0
📈 Added
-
General:
- Add a new built-in metric,
uptime_s
, which reports the total uptime of the
device in seconds. This metrics is enabled by default, and can be disabled
with#define MEMFAULT_METRICS_UPTIME_ENABLE 0
in
memfault_platform_config.h
.
- Add a new built-in metric,
-
Zephyr:
- Update the QEMU sample app to use newly-released
Zephyr v4.0.0 🥳.
- Update the QEMU sample app to use newly-released
-
ESP-IDF:
- Added support for dual-core coredumps on ESP32 and ESP32-S3. This feature is
enabled by default and can be disabled with the Kconfig option
CONFIG_MEMFAULT_COREDUMP_CPU_COUNT=1
. Note: not all fault conditions will
cause both CPU cores to be captured in the coredump. The SDK will always
capture the core that triggered the fault, and if the non-faulting core is
available for capture, it will be included as well.
- Added support for dual-core coredumps on ESP32 and ESP32-S3. This feature is
1.17.0
📈 Added
-
General:
-
Add parsing of an optional log message argument for the
test_trace
command
in the core demo cli. This argument will be inserted as a
custom log message with the trace event, which can be useful for testing the
insertion of custom log messages into trace events at runtime. -
Add the following built-in metrics, enabled by default (and quota-exempt):
MemfaultSDKMetric_log_recorded_lines
: the total number of log lines
written into the Memfault log buffer during the heartbeat intervalMemfaultSDKMetric_log_dropped_lines
: the total number of log lines
dropped (overwritten or not recorded) due to buffer exhaustion during the
heartbeat interval
For example, if the buffer is sufficiently large to store 10 logs, and 15
logs are written:MemfaultSDKMetric_log_recorded_lines
will be 15MemfaultSDKMetric_log_dropped_lines
will be 5
If 5 more logs are written:
MemfaultSDKMetric_log_recorded_lines
will be 20MemfaultSDKMetric_log_dropped_lines
will be 10
-
Cosmetic updates to the
examples/freertos/
app log format, including
applying ANSI color codes based on log level.# Before: mflt> test_log Raw log! 2024-11-14T17:01:12Z|4284 I Info log! 2024-11-14T17:01:12Z|4284 W Warning log! 2024-11-14T17:01:12Z|4284 E Error log! # After: mflt> test_log Raw log! MFLT:[INFO] Info log! MFLT:[WARN] Warning log! MFLT:[ERRO] Error log!
-
-
ESP-IDF:
-
Enable NTP time synchronization by default, controlled with the Kconfig
optionCONFIG_MEMFAULT_NTP_SYNC
. After NTP synchronization, events
(heartbeats and trace events) will be timestamped with the current device
time. -
Add a
test_trace
command to the ESP-IDF demo cli to capture an example
trace event. This behaves the same as thetest_trace
command in the
core demo cli. -
Mark coredumps with the
Software Watchdog
crash reason if the IWDT
triggered the fault, instead of marking them asHard Fault
. -
Add OTA update check-ins to the HTTP client's periodic upload, controlled
with the Kconfig optionCONFIG_MEMFAULT_HTTP_PERIODIC_UPLOAD_OTA
. When
enabled, the system will be restarted after downloading the update. To
customize this behavior, enable
CONFIG_MEMFAULT_HTTP_PERIODIC_UPLOAD_OTA_CUSTOM_CBS
, and implement the
global callback structg_memfault_ota_update_handler
. This feature is
disabled by default.
-
🐛 Fixed
-
General:
- Add missing type promotion rules for variants of
char
pointers when
encoding compact logs. Previously, these types that should promote to a
string in the compact logging encoding fell into the default case ofint
,
causing compact logging decode to fail when processed by the Memfault
backend.
- Add missing type promotion rules for variants of
-
ESP-IDF:
- Fix an issue when using compact logs with
CONFIG_MEMFAULT_USE_MEMFAULT_BUILD_ID=y
(default). The command would
always run (was always out-of-date) when anyidf.py [build|flash]
command
is run, even if the original .elf file did not change. This caused the
log_fmt
section (used for decoding compact logs) to be removed from the
/memfault-esp32-demo-app.elf.memfault_log_fmt
file, which causes Memfault
Compact Logs to fail to decode. The command is fixed to only run when the
.elf file changes.
- Fix an issue when using compact logs with
1.16.0
🔥 Removed
- Removed support for Zephyr < 2.7.0
- Removed support for nRF-Connect SDK < 1.9.2
- Removed support for ESP-IDF < 4.4.0
Please contact us if you need support for
earlier versions!
🐛 Fixed
-
General:
- Correct an issue where
eMemfaultRebootReason
is expressed as a 4-byte type
instead of 2-bytes when compiling with Clang with high optimization, when
targeting ARM. This results in Coredumps tagged asUnknown
instead of the
correct reason code.
- Correct an issue where
📈 Added
-
General:
-
Add a pair of optional user-provided functions,
memfault_reboot_tracking_load()
/memfault_reboot_tracking_save()
, to
allow users to provide their own implementations for saving and loading
reboot tracking data. This is useful when the default implementation is not
suitable for the platform or when the user wants to store the data in a
different location. -
The
Stable Sessions Device Vital
added in SDK version1.15.0
is fully available and no longer considered
experimental. -
Add an optional
memfault_port_coredump_save_begin()
callback, for use by
Memfault ports. This allowsmemfault_platform_coredump_save_begin()
to be
implemented by the platform instead, for custom pre-coredump operations.
Thanks to @finger563 for reporting this issue in
#77! -
Improved API docs for events and data packetizer components by noting
restrictions for use in ISR contexts
-
-
Zephyr:
- Update the Qemu app to support the
nucleo_l496zg
board, with support for
the Zephyrbbram
subsystem, and implement the new
memfault_reboot_tracking_load()
/memfault_reboot_tracking_save()
functions to demonstrate the functionality.
- Update the Qemu app to support the
-
ESP-IDF:
- New Kconfig setting,
CONFIG_MEMFAULT_ENABLE_REBOOT_DIAG_DUMP
, to print the
ESP-IDF reboot reason code on system boot, for debugging purposes. This
feature is disabled by default.
- New Kconfig setting,
🛠️ Changed
-
General:
- Update support links to refer to the preferred site
https://mflt.io/contact-support instead of the Memfault support email.
This link will redirect to a form where questions can be sent to the
Memfault support team.
- Update support links to refer to the preferred site
-
nRF-Connect SDK:
- Changed the Kconfig symbol
MEMFAULT_REBOOT_REASON_GET_CUSTOM
to beimply
instead ofselect
when the nRF-Connect SDK is enabled. This permits users
to disable thenrfx
-based reboot reason tracking if needed.
- Changed the Kconfig symbol
1.15.0
📈 Added
-
General:
- EXPERIMENTAL: Metrics Sessions now include a built-in metric for the
Stable Sessions Device Vital
(session.operational_crashes
) which tracks crashes that occurred when a
session is active.
- EXPERIMENTAL: Metrics Sessions now include a built-in metric for the
🛠️ Changed
-
General:
- Minor changes to support compiling with GCC ARM v4.9.3.
🐛 Fixed
- Corrected a spelling error, renamed
MEMFAULT_METRIS_KEY_DEFINE_WITH_SESSION_AND_SCALE_VALUE()
toMEMFAULT_METRICS_KEY_DEFINE_WITH_SESSION_AND_SCALE_VALUE()
1.14.0
📈 Added
-
ESP-IDF:
- The Memfault port will now disable the
IWDT
(Interrupt Watchdog Timer)
before starting coredump saving, to prevent interrupting the coredump
process. The ESP-IDF fault handler enables theWDT_RWDT
hardware watchdog
when a fault occurs, so there is still protection if the fault handling
hangs.
- The Memfault port will now disable the
1.13.0
📈 Added
-
FreeRTOS:
- The SDK now has a config to control whether to split CPU usage per core when
building for a multi-core device. Enable this setting by adding
#define MEMFAULT_FREERTOS_RUNTIME_STATS_MULTI_CORE_SPLIT 1
to
memfault_platform_config.h
. This setting is disabled by default.
- The SDK now has a config to control whether to split CPU usage per core when
-
ESP-IDF:
- Added a Kconfig,
CONFIG_MEMFAULT_FREERTOS_RUNTIME_STATS_MULTI_CORE_SPLIT
,
to controlMEMFAULT_FREERTOS_RUNTIME_STATS_MULTI_CORE_SPLIT
. This Kconfig
is enabled by default for multi-core devices.
- Added a Kconfig,
🛠️ Changed
-
FreeRTOS:
- Changed previous idle task run time percent metrics to measure CPU usage
(i.e. the complement of the idle task run time) - Renamed the following metrics:
- Single-Core + Multi-Core Default:
idle_task_run_time_percent
->cpu_usage_pct
- Multi-Core Split:
idle0_task_run_time_percent
->cpu_usage_pct
idle1_task_run_time_percent
->cpu1_usage_pct
- Single-Core + Multi-Core Default:
- Changed previous idle task run time percent metrics to measure CPU usage
-
ESP-IDF:
- Unknown or unclassified reboot reason codes returned by
get_reset_reason()
are now correctly recorded askMfltRebootReason_Unknown
instead of
kMfltRebootReason_UnknownError
(UnknownError
is reserved for an
"unexpected" reboot path, whereUnknown
is used when the reboot reason
cannot be determined).
- Unknown or unclassified reboot reason codes returned by
🚩 Deprecated
Support for the following vendor platform versions is deprecated in this
release, and will be removed in the following release:
- ESP-IDF <
v4.4
(Jan 26, 2022) - Zephyr <
v2.7.0
(Oct 16, 2021) - nRF-Connect SDK <
v1.9.2
(Jul 14, 2022)
Please contact us if you need support for earlier
versions!