Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Change Log

- FreeRTOS: Fix the issue where hints are not showing at all when Thread ID is missing.

## 0.0.15 - Mar 28, 2026

- Read stackTop for current running task with function contributed by @malsyned also in uc/OS-II.
Expand Down
2 changes: 1 addition & 1 deletion src/rtos/rtos-freertos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ export class RTOSFreeRTOS extends RTOSCommon.RTOSBase {
this.helpHtml = '';
try {
let ret = '';
if (!thInfo['uxTCBNumber'].val) {
if (!thInfo['uxTCBNumber']?.val) {
ret += `Thread ID missing......: Enable macro ${strong('configUSE_TRACE_FACILITY')} in FW<br>`;
}
if (!th.stackInfo.stackEnd) {
Expand Down
Loading