This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AWRL1432BOOST-BSD: Stack Usage in CCS

Part Number: AWRL1432BOOST-BSD

Tool/software:

Hello,

I'm confused about reading stack information from "Stack Usage" in CCS

1. In the BSD demo code, task stacks are defined as follows

CLI_TASK_STACK_SIZE (4 * 1024U)

DPC_TASK_STACK_SIZE (8912)

StackType_t is uint32_t → 4bytes

StackType_t  gCliTskStack[CLI_TASK_STACK_SIZE] __attribute__((aligned(32)));  → 4 * 1024 * 4 bytes

StackType_t  gDpcTaskStack[DPC_TASK_STACK_SIZE] __attribute__((aligned(32))); → 8912 * 4 bytes

2. this website(https://software-dl.ti.com/ccs/esd/documents/ccs_stack_usage_view.html) says "The size values shown in the view are in bytes" 

Why are these two tasks shown in yellow? DPC(2328). CLI(2152) 

In addition, size of DPC is twice of CLI.