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.

cc2541利用oad来实现双bin

Other Parts Discussed in Thread: CC2541

各路大神

小弟想用TI提供的OAD例程来实现CC2541双bin, 但是在看OAD例程的时候对其flash分区没看明白

#if !defined OAD_IMG_A_PAGE
#define OAD_IMG_A_PAGE 1
#define OAD_IMG_A_AREA 62
#endif

#if !defined OAD_IMG_B_PAGE
// Image-A/B can be very differently sized areas when implementing BIM vice OAD boot loader.
#if defined FEATURE_OAD_BIM
#define OAD_IMG_B_PAGE 8
#else
#define OAD_IMG_B_PAGE 63
#endif
#define OAD_IMG_B_AREA (124 - OAD_IMG_A_AREA)
#endif

我无法看出imageA的起始地址是多少,imageB的起始地址是多少, 从相关资料上看,BIM是4k,imageA是90k,剩下的给imageB, 如果在设置上体现出来?

如果我想做到(8K+110K+128K+剩余公共区)该怎么做?

谢谢