Tool/software: TI-RTOS
Speaking of the difference between 1.60 and 2.20 SDK, can somebody help translate the initializer values below? The first are ones recommended for use with SDK 1.60. As you can see, the second have changed field names but also the last three are quite different. Any recommendations would be appreciated. We're using EasyLink_Phy_Custom for one application and EasyLink_Phy_625bpsLrm for another, with the former having potentially high collision rates with many sensor nodes banging on a small number of concentrators.
const RFCC26XX_HWAttrsV2 RFCC26XX_hwAttrs = { .hwiCpe0Priority = INT_PRI_LEVEL7,//~0, .hwiHwPriority = INT_PRI_LEVEL7,//~0, .swiCpe0Priority = 5,//0, .swiHwPriority = 5,//0, }
const RFCC26XX_HWAttrsV2 RFCC26XX_hwAttrs = { .hwiPriority = ~0, /* Lowest HWI priority */ .swiPriority = 0, /* Lowest SWI priority */ .xoscHfAlwaysNeeded = true, /* Keep XOSC dependency while in stanby */ .globalCallback = NULL, /* No board specific callback */ .globalEventMask = 0 /* No events subscribed to */ };
Regards,