Other Parts Discussed in Thread: MSP430F5438, Z-STACK, CC2520
Hi,
I thought to update Z-stack core to our MSP430F5438+CC2520 based application. So I extracted Z-stack core version 2.6.0.3 from TI's latest package "Z-Stack Energy 1.1.0" and build our application with it. I faced a problem with data models. Z-Stack libraries are build with small-data model and my application would need medium data model. Linker does not like this .
I have big data arrays for bitmaps, fonts etc. which did not fit to small data model, so I had to change data model to medium in project options and use prefix __data20 in data definitions such as:
const uint16 __data20 bitmapX [] = {
..... plenty of data here ......
};
Using of __data20 would require medium data model but we cannot use it due to Z-Stack libraries.
How this can be solved?
Regards,
Ari