Tool/software:
Hi experts
We have encountered some issues recently when using SYS/BIOS, mainly manifested as tasks failing to run and abnormal Mailbox status. The information obtained from the ROV window of CCS is as follows:


The scripts for creating tasks and mailboxes in the cfg file are as follows:
var phyTxTaskParams = new Task.Params();
phyTxTaskParams.priority = 13;
phyTxTaskParams.stackSize = 1024;
var phyTxTask = Task.create("&PHY_tx_thread", phyTxTaskParams);
var mbxPhyTxQueParams = new Mailbox.Params();
mbxPhyTxQueParams.instance.name = "PHY_TX_QUE";
Program.global.PHY_TX_QUE = Mailbox.create(1, 2, mbxPhyTxQueParams);
Tool versions:
CCS: 12.8.1.00005
XDCtools: 3.25.6.96
SYS/BIOS: 6.35.1.29
Hwi, Swi, and Timer are running normally, but the internal scheduling status of the Task is abnormal.
We have initially ruled out issues with stack usage and memory overflow, and suspect that version compatibility or interface differences may be the cause. We hope you can help us further analyze this. Thank you!


