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.

LAUNCHXL-CC1310: cc1310 mesh setup step by step parameters

Part Number: LAUNCHXL-CC1310
Other Parts Discussed in Thread: TIDA-010003, CC1310

Trying to implement mesh network by cc1310(node - TIDA-010003)  & cc1310+Msp432(root - TIDA-01547)

First trying to to fully understand and implement node network. Referring to TIDA-010003, Fig 1 on page 2.

Please correct or suggest if anything need to be done differently in below points.

1. Refer to fig 1, need to select 863Mhz & long range mode 5, so in config.h , I have defined like this

#define CONFIG_PHY_ID                (APIMAC_STD_US_915_PHY_1)

2. Need to use freq hoping mode. So this code in features.h

#undef FEATURE_ALL_MODES //FIXME

/*! If defined, builds the image with the frequency mode of operation */
#define FEATURE_FREQ_HOP_MODE //FIXME

/*! If defined, builds the image with beacon mode of operation */
#undef FEATURE_BEACON_MODE

/*! If defined, builds the image with non beacon mode of operation */
#undef FEATURE_NON_BEACON_MODE

3. In video series, it is mentioned that both parent and node should know the hopping pattern. i have mode node & root codes able to compile & build. Where this pattern is defined?

4. Have battery operated application, node send data only when interrupt occurs. So i thibk best option is debug_push_leaf. If any other options let me know?

5. Also Is debug_push_leaf is final release build also? Or we cna further reduce size/improve speed by release setting? If yes, what parameters in debug_push_leaf need to be undefined?

Have next queries also, but first help me to set these values in node code.