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.

CC2564CSTBTBLESW: What is __SUPPORT_CC256XC_PATCH__ for?

Part Number: CC2564CSTBTBLESW


I wonder what the macro __SUPPORT_CC256XC_PATCH__ is for? How about __SUPPORT_CC256X_PATCH__? 

Of course I realize they lead to adding different patch data into the firmware by the following code

/* Add this define to use CC256X									*/
#ifdef __SUPPORT_CC256X_PATCH__
    #include "CC256X.h"
#else
#ifdef __SUPPORT_CC256XC_PATCH__
    #include "CC256XC.h"
#else    
    #include "CC256XB.h"
#endif    
#endif

What are these data sets? Thanks!

-- Jinkang