We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dd48f14 + 290fc53 commit e4f07bcCopy full SHA for e4f07bc
src/rtos/rtos-ucosii.ts
@@ -234,7 +234,7 @@ export class RTOSUCOS2 extends RTOSCommon.RTOSBase {
234
const threadId = curTaskObj['OSTCBId']?.val;
235
236
let thName = '???';
237
- if (curTaskObj['OSTCBTaskName-exp']) {
+ if (curTaskObj['OSTCBTaskName']) {
238
const tmpThName = await this.getExprVal('(char *)' + curTaskObj['OSTCBTaskName']?.exp, frameId) || '';
239
const matchName = tmpThName.match(/"([^*]*)"$/);
240
thName = matchName ? matchName[1] : tmpThName;
0 commit comments