Tool/software: TI-RTOS
Hi ,
I'm using Simple BLE Peripheral with Stack as Library configuration on CC2640R2F with BLE Stack v3.1.0. (RTOS in FLASH)
I checked the map file generated and found that there are fixed allocated memory ranges
[0x20000000-0x200000c7] --> Ram Vector Table
[0x20000430-0x2000043f] --> dmaSPI0RxControlTableEntry
[0x20000440-0x2000044f] --> dmaSPI0RxControlTableEntry
[0x20000500-0x2000050f] --> dmaSPI1RxControlTableEntry
[0x20000510-0x2000051f] --> dmaSPI1RxControlTableEntry
because of these my RWDATA Block where my .data and .bss sections are placed only after 0x20000520 leaving the range from 0x200000c8 to 0x2000042F empty.
Can I keep some of my .data objects in that 0x200000c8 to 0x2000042F ? as this is not at all used.(I also verified with debugger that this section was always remained 0).