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.

UNIFLASH: Arm-based microcontrollers forum

Part Number: UNIFLASH
Other Parts Discussed in Thread: MSPM0G3507

Tool/software:

From UniFlash Quick Start Guide, there is a page shows how to erase the device with the option "use the erase options specified below", then we can select the range which we want to erase. 

And it can be found the same method in CCS, it define the below info in launch.json file.

"debuggerSettings": {
  "targetConfigs/MSPM0G3507.ccxml": {
    "Texas Instruments XDS110 USB Debug Probe/CORTEX_M0P": {
      "data": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\n<PropertyValues>\n\n <property id=\"FlashEraseSelection\">\n <curValue>Erase MAIN memory sectors by range (specify below)</curValue>\n </property>\n\n <property id=\"FlashEraseSectorsEndAddress\">\n <curValue>00001F00</curValue>\n </property>\n\n <property id=\"FlashFiles\">\n <curValue></curValue>\n </property>\n\n</PropertyValues>\n"
      }
    }
}
The setting would like below,
Can someone help to advise how to merge the debuggerSettings info within launch.json to MSPM0G3507.ccxml? 
Or I should add these with the option "--setting arg" when I execute dslite command?