Everything

build.Link.SectionStartAddress


This property sets or refers to the link options for the active project regarding the addresses where sections start. [CC-RH][CC-RX][CC-RL]

[Specification format]

build.Link.SectionStartAddress = section

[Setting(s)]

Setting

Description

section

Set the start address of the section as strings.

[Reference]

Start address of the section (strings)

[Detailed description]

-

This property sets or refers to the link options for the active project regarding the addresses where sections start.

-

Add or change for the referred strings to change the setting.

[Example of use]

>>>sec= build.Link.SectionStartAddress  ... Refer the current setting and change the start address of the section
>>>print sec
B_1,R_1,B_2,R_2,B,R,SU,SI/01000,PResetPRG/0FFFF8000
>>>sec = "B_1/0200,R_1,B_2,R_2,B,R,SU,SI/01000,PResetPRG/0FFFF8000"
>>>build.Link.SectionStartAddress = sec
>>>print build.Link.SectionStartAddress
B_1/0200,R_1,B_2,R_2,B,R,SU,SI/01000,PResetPRG/0FFFF8000