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