Hello,
I am programming for the MSP430F2274 and I started to notice a serious problem. I am using "Real Time Clock Library" provided by TI which uses assembly code (RTC_Calendar.asm).
The assembly file declares several global variables that sit in the following section of the memory:
000003c8 TI_year
000003ca TI_second
000003cb TI_minute
000003cc TI_hour
000003cd TI_day
000003ce TI_month
000003cf TI_PM
000003d0 TI_FebDays
000003d1 TI_dayOfWeek
000003d2 TI_dayLightZone
000003d3 TI_dayLightSavings
The problem is that my C code global variables are starting to use the above locations resulting in bad things. Any idea how to prevent the C variables code from using certain sections of memory?