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.

what different LRM/NLRM mode in ti 15.4 stack

hi all.

what different LRM/NLRM mode in main ti 15.4 stack

the LRM and Non-LRM should be data rate(50k bps and 5k bps)

CONFIG_SCAN_DURATION and CONFIG_CHANNEL_PAGE  

we build system with ti 15.4(coprocessor and sensor),

but it work different with LRM /NLRM mode(APIMAC_GENERIC_US_LRM_915_PHY_129/APIMAC_STD_US_915_PHY_1)

0. that start up time(Cllc_states_startingCoordinator)

1. sensor devices join time   

2. sendMsg time  ie. sendToggleLedRequest

#define CONFIG_MAC_SUPERFRAME_ORDER  15

/*! Setting for Phy ID */
#define CONFIG_PHY_ID                (APIMAC_STD_US_915_PHY_1)

#if ((CONFIG_PHY_ID >= APIMAC_MRFSK_STD_PHY_ID_BEGIN) && (CONFIG_PHY_ID <= APIMAC_MRFSK_STD_PHY_ID_END))
/*! Setting for channel page */
#define CONFIG_CHANNEL_PAGE          (APIMAC_CHANNEL_PAGE_9)
#elif ((CONFIG_PHY_ID >= APIMAC_MRFSK_GENERIC_PHY_ID_BEGIN) && (CONFIG_PHY_ID <= APIMAC_MRFSK_GENERIC_PHY_ID_END))
/*! Setting for channel page */
#define CONFIG_CHANNEL_PAGE          (APIMAC_CHANNEL_PAGE_10)
#else
#error "PHY ID is wrong."
#endif

#if ((CONFIG_PHY_ID >= APIMAC_MRFSK_STD_PHY_ID_BEGIN) && (CONFIG_PHY_ID <= APIMAC_MRFSK_GENERIC_PHY_ID_BEGIN))
/*! scan duration */
#define CONFIG_SCAN_DURATION         5
#elif ((CONFIG_PHY_ID >= APIMAC_MRFSK_GENERIC_PHY_ID_BEGIN + 1) && (CONFIG_PHY_ID <= APIMAC_MRFSK_GENERIC_PHY_ID_END))
/*! scan duration */
#define CONFIG_SCAN_DURATION         9
#else
#error "PHY ID is wrong."
#endif