Other Parts Discussed in Thread: CC2538
Hi all,
I am working on CC2538 end device.
/*******This is given in f8wconfig.cfg file for pre processing*******/
-DRFD_RCVC_ALWAYS_ON=FALSE
/*******************************************************************/
/**********This is given in stack part********************************/
void ZDConfig_UpdatePowerDescriptor( void )
{
if ( ZSTACK_END_DEVICE_BUILD )
{
if ( zgPollRate )
ZDO_Config_Power_Descriptor.PowerMode = NODECURPWR_RCVR_AUTO;
else
ZDO_Config_Power_Descriptor.PowerMode = NODECURPWR_RCVR_STIM;
ZDO_Config_Power_Descriptor.AvailablePowerSources = NODEAVAILPWR_RECHARGE;
ZDO_Config_Power_Descriptor.CurrentPowerSource = NODEAVAILPWR_RECHARGE;
ZDO_Config_Power_Descriptor.CurrentPowerSourceLevel = NODEPOWER_LEVEL_66;
}
/*********************************************************************************/
so please tell me that RFD_RCVC_ALWAYS_ON(used in f8wconfig.cfg) and NODECURPWR_RCVR_AUTO(used in stack) are same or different.
or how they are related
Thanks