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.

CC1352R: configure Hwi resetVectorAddress in TI-RTOS7

Part Number: CC1352R
Other Parts Discussed in Thread: SYSBIOS

Hi all,

I am currently working on updating an industry project to TI-RTOS7.

Before, we set m3Hwi.resetVectorAddress in cfg file to address 0x90 like this:

var m3Hwi = xdc.useModule('ti.sysbios.family.arm.m3.Hwi');

m3Hwi.resetVectorAddress = 0xXXXX;

Now, I was trying to bring this to syscfg like this:

const Hwi          = scripting.addModule("/ti/sysbios/family/arm/m3/Hwi");

Hwi.resetVectorAddress = 0xXXXX;

When I do so, it raises an error cannot set 'resetVectorAddress' to XXXX: Type mismatch, expected = BigInteger, actual = number

Could anybody please advise, how this should be done?

Thanks